Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 374 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 374 Bytes

Disassembly of code used for bootstrapping a PC. The assembly was generated from real bootsectors by running something similar to the below commands and then cleaning up the output.

$ dd if=/dev/hda of=mbr.img count=1
$ objdump -b binary -m i386 -D mbr.img

This project is primarily a refresher on how to use the various binutils utilities to do stuff like this.