Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.gitignore | H A D | 09-Jun-2010 | 12 | 3 | 2 | |
Makefile | H A D | 08-Jun-2010 | 269 | 21 | 14 | |
README | H A D | 08-Jun-2010 | 297 | 17 | 10 | |
tick.S | H A D | 18-Sep-2012 | 1.4 KiB | 102 | 85 |
README
1Compiling 2--------- 3 4You can simply type: 5 6 $ make 7 8to build a 16-bit binary that uses the i8086 instruction set. 9 10Disassembling 11------------- 12 13Use the "-m i8086" command line option with objdump to make sure it knows we're 14dealing with i8086 instruction set: 15 16 $ objdump -d -m i8086 i8086.elf 17