cheat-engine/dbvm/bootsector/bootloader.lnk
2012-01-29 10:19:39 +00:00

15 lines
173 B
Text
Executable file

OUTPUT_FORMAT("binary")
ENTRY(main)
SECTIONS
{
.text 0x7c00 : {
*(.text)
}
.data 0x7c00 : {
*(.data)
}
.bss :
{
*(.bss)
}
}