From 7e4bf75495616efd17908eff03f477c62e540104 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Wed, 7 Oct 2020 23:10:47 +0300 Subject: [PATCH] Add README section about disasm Change section headings for better visibility. --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e163b99..9ec66c4 100644 --- a/README.md +++ b/README.md @@ -35,19 +35,19 @@ Use at least rustc nightly 2020-07-15 with cargo nightly of the same or later da Install tools: `cargo install just cargo-make`. Install qemu (at least version 4.1.1): `brew install qemu`. -To build kernel and run it in QEMU emulator: +### To build kernel and run it in QEMU emulator ``` just qemu ``` -To build kernel for Raspberry Pi and copy it to SDCard mounted at `/Volumes/BOOT/`: +### To build kernel for Raspberry Pi and copy it to SDCard mounted at `/Volumes/BOOT/` ``` just device ``` -To run tests (tests require QEMU): +### To run tests (tests require QEMU) ``` just test @@ -60,6 +60,14 @@ On the device boot SD card you'll need a configuration file instructing RasPi to arm_64bit=1 ``` +### To see kernel disassembly + +You need to have [Hopper](https://hopperapp.com) and hopperv4 cli helper installed. + +``` +just disasm +``` + ## Development flow `mainline`, `develop` and `released` branches: