Cybernoid #1 Posted April 15, 2006 I have upgraded to the latest version of CC65, and am now receiving the following error. Does anyone know how to work around this? Thanks! Unresolved external `__LOWCODE_LOAD__' referenced in: crt0.s(18) Unresolved external `__RESERVED_MEMORY__' referenced in: crt0.s(19) ld65.exe: Error: 2 unresolved external(s) found - cannot create output file make: *** Error 255 Quote Share this post Link to post Share on other sites
danwinslow #2 Posted April 15, 2006 Make sure you are using the new linker cfg file...also that you have the new atari.lib and .o as well as the new cc65 binaries. You may have to define the __RESERVED_MEMORY__ as so : cl65 -m map.txt -l -t atari -I..\include -L..\aelib main.c -o main.com usb.o sl811.o aelib.lib -Wl "-D __RESERVED_MEMORY__=1" Quote Share this post Link to post Share on other sites
Heaven/TQA #3 Posted April 15, 2006 aha... that's why i stay with xasm and pure 6502 code... Quote Share this post Link to post Share on other sites
danwinslow #4 Posted April 15, 2006 Things that never change never require adjustments. They never get any better, either. Quote Share this post Link to post Share on other sites
Shawn Jefferson #5 Posted April 27, 2006 Make sure you are using the new linker cfg file...also that you have the new atari.lib and .o as well as the new cc65 binaries. You may have to define the __RESERVED_MEMORY__ as so :cl65 -m map.txt -l -t atari -I..\include -L..\aelib main.c -o main.com usb.o sl811.o aelib.lib -Wl "-D __RESERVED_MEMORY__=1" You can put RESERVED_MEMORY right in the linker config file too. Chris, that constant replaces the _graphmode_used (sp?) variable from previous versions. Quote Share this post Link to post Share on other sites