Added linker config to get rid of ld65 warning message.

This commit is contained in:
Martin Haye 2013-08-25 14:51:30 -07:00
parent 3b28ac9209
commit a63da49c97

View File

@ -0,0 +1,9 @@
MEMORY {
ZP: file = "", define = yes, start = $0000, size = $00100;
STK: file = "", define = yes, start = %S, size = $00100;
RAM: file = %O, start = %S, size = $10000;
}
SEGMENTS {
CODE: load = RAM, type = rw, align = $100;
ZEROPAGE: load = ZP, type = zp;
}