diff --git a/README.md b/README.md
index 13a79b9..27416bb 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
+# Bluepill
+
Figure 1. First ever vmexit...
-# Bluepill
-
Bluepill is an Intel type-2 research hypervisor. This project is purely for educational purposes and is designed to run on Windows 10 systems.
This project uses WDK and thus Windows Kernel functions to facilitate vmxlaunch.
@@ -147,3 +147,7 @@ idt::table[general_protection] = idt::create_entry(hv::idt_addr_t{ __gp_handler
idt::table[page_fault] = idt::create_entry(hv::idt_addr_t{ __pf_handler }, idt::ist_idx::pf);
idt::table[divide_error] = idt::create_entry(hv::idt_addr_t{ __de_handler }, idt::ist_idx::de);
```
+
+# Demo
+
+The demo code demonstrates bluepill integration with VDM and a read/write physical memory example.
\ No newline at end of file