1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 14:48:08 +00:00

Fix nasm output format

Output option for flat-form binary files is 'bin'
This commit is contained in:
Arpan Kapoor 2015-04-20 00:10:48 +05:30
parent 4850d91f92
commit 26e1158223

View File

@ -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
```