From 26e1158223596cdd03ccd6fc00f74d90abf238d9 Mon Sep 17 00:00:00 2001 From: Arpan Kapoor Date: Mon, 20 Apr 2015 00:10:48 +0530 Subject: [PATCH] Fix nasm output format Output option for flat-form binary files is 'bin' --- Booting/linux-bootstrap-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-1.md b/Booting/linux-bootstrap-1.md index e93be11..c179865 100644 --- a/Booting/linux-bootstrap-1.md +++ b/Booting/linux-bootstrap-1.md @@ -138,7 +138,7 @@ In this example we can see that this code will be executed in 16 bit real mode a Although you can see binary dump of it with `objdump` util: ``` -nasm -f binary boot.nasm +nasm -f bin boot.nasm objdump -D -b binary -mi386 -Maddr16,data16,intel boot ```