opcode-projects/80286/BIOS/Unsorted/txt/boot-empty.txt

5 lines
617 B
Plaintext

This is an empty 512KB bootsector. It's filled with hex 90 bytes, which is an x86 NOP (do nothing, or no-op) instruction. At the end? It's got hex E9 F4FD, a near jump back to the start of the bootsector.
A lot of my initial binaries are likely going to be calculated to bootsector offsets. A bit of binary code to adjust these offsets that you can tack onto your functions is in the works.
Both tacking the offset corrector on to run before a given function (dynamic offset at runtime) and changing the function's offsets without tacking on a corrector (static at runtime) will be something I'll try to make easy.