Change kernel link type

Kernel is now compiled and linked into a raw binary instead of intel
hex. This raw binary can be loaded into the correct address by the
bootloader.

I wanted this to be an o65 file, but ld65 kept complaining about it.
Honestly though having this be a straight binary makes it easier to
load, but we can't relocate it.
This commit is contained in:
Byron Lathi
2022-04-18 20:27:48 -05:00
parent 0fadc6a80f
commit 9f1d527a7c
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ MEMORY
{
ZP: start = $0, size = $100, type = rw, define = yes;
SDRAM: start = $200, size = $7cf0, type = rw, define = yes;
ROM: start = $8000, size = $8000, fill = yes, fillval = $ff, file = %O;
ROM: start = $D000, size = $3000, file = %O;
}
SEGMENTS {