From 659cd8adbd940c4a7566cdc4a461ba05b5d2177c Mon Sep 17 00:00:00 2001 From: johannst Date: Sun, 30 May 2021 02:03:21 +0200 Subject: added long mode example with 4 level paging --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index c0227e6..bf8338f 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ The sources are structured as follows: ## Real Mode (16bit) example +Runs the [real mode VM](./examples/real_mode.rs) with the [guest program](./guest/guest16.S). + ```bash # Once: Build the guest binary image. make -C guest @@ -23,5 +25,17 @@ make -C guest cargo run --example real_mode ``` +## Long Mode (64bit) example + +Runs the [long mode VM](./examples/long_mode.rs) with the [guest program](./guest/guest64.S). + +```bash +# Once: Build the guest binary image. +make -C guest + +# Run the Long Mode example. +cargo run --example long_mode +``` + ## License This project is licensed under the [MIT](LICENSE) license. -- cgit v1.2.3