diff --git a/README.md b/README.md
index 5dc88e1..8a39a57 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
[](LICENSE)
[](https://github.com/ReturnInfinity/BareMetal/actions/workflows/main.yml)
-Exokernel • Pure Assembly • Virtual/Physical
+Exokernel • 100% Assembly • Virtual/Physical
Official repo of the BareMetal [exokernel](http://en.wikipedia.org/wiki/Exokernel). It's written from scratch in Assembly, designed for x86-64 hardware, with no dependencies except for the virtual/physical hardware. An ARM and/or RISC-V rewrite would be considered once hardware is standardized.
@@ -16,6 +16,7 @@ Official repo of the BareMetal [exokernel](http://en.wikipedia.org/wiki/Exokerne
### Table of Contents
- [What it is](#what-it-is)
+- [Architecture](#architecture)
- [Key features](#key-features)
- [Supported hardware](#supported-hardware)
- [Try it out](#try-it-out)
@@ -26,13 +27,23 @@ BareMetal is a _very_ lean kernel. The name is a play on the phrase "bare metal"
BareMetal provides basic support for symmetric multiprocessing, network, and storage access via a low-level abstraction layer.
-
+## Architecture
+BareMetal is an [exokernel](https://en.wikipedia.org/wiki/Exokernel) and offers a [single address space](https://en.wikipedia.org/wiki/Single_address_space_operating_system) system.
+
+It is written in [assembly](https://en.wikipedia.org/wiki/Assembly_language) to achieve high-performance computing with a minimal footprint and a "[just enough operating system](https://en.wikipedia.org/wiki/JeOS)” approach.
+
+The kernel is primarily targeted towards physical and [virtualized](https://en.wikipedia.org/wiki/Virtualization) environments for [cloud computing](https://en.wikipedia.org/wiki/Cloud_computing), or [HPC](https://en.wikipedia.org/wiki/High-performance_computing) clusters. It could also be used as a [unikernel](https://en.wikipedia.org/wiki/Unikernel).
+
+> “Do not try to do everything. Do one thing well.” — Steve Jobs
+
+The premise of the kernel is to "do one thing well" and that is to execute a program with zero overhead.
## Key features
-* **64-bit**: Make use of the extra-wide and additional registers available in 64-bit mode.
+* **BIOS/UEFI**: Both boot methods are supported via the companion Pure64 loader.
+* **64-bit only**: Make use of the extra-wide and additional registers available in 64-bit mode.
* **Mono-processing, multi-core**: The system is able to execute a single program but can spread the work load amongst available CPU cores.
-* **Extremely tiny memory footprint**: The kernel binary is less than 32KiB. BareMetal uses 4 MiB of RAM while running. The majority of RAM usage is for required memory structures for operating in 64-bit mode, drivers/system buffers, and CPU stacks.
+* **Extremely tiny memory footprint**: The kernel binary is less than 32KiB. BareMetal uses 4 MiB of RAM while running. The majority of its RAM usage is for required memory structures while operating in 64-bit mode, drivers/system buffers, and CPU stacks. All other system memory is dedicated to the running program.
* **Physical and virtual hardware support** with full virtualization, using [x86 hardware virtualization](https://en.wikipedia.org/wiki/X86_virtualization) whenever available (it is on most modern x86-64 CPU's). In principle BareMetal should run on any x86-64 hardware platform, even on a physical x86-64 computer, given appropriate drivers. Officially, we develop on [QEMU](http://www.qemu.org) and [VirtualBox](https://www.virtualbox.org), which means that you can run BareMetal on both Linux, Microsoft Windows, and Apple macOS.
## Supported Hardware