Open chriscamacho opened 2 months ago
$ whereis cl65 cl65: /home/chris/development/6502/devel/tools/cc65/bin/cl65 $ find /home/chris/development/6502/devel/ -name none.lib /home/chris/development/6502/devel/cc65/lib/none.lib /home/chris/development/6502/devel/tools/cc65/share/cc65/lib/none.lib
followed the instructions as per readme.md
everything seems to be working, but...
$ make Building project... mkdir -p bin mkdir -p lst mkdir -p map cl65 --static-locals -t none -C src/includes/neo6502.cfg -O --cpu 65c02 -l lst/helloworld.lst -m map/helloworld.map -o bin/helloworld.bin src/main.asm src/includes/neo6502.lib ld65: Error: Input file 'none.lib' not found make: *** [Makefile:20: all] Error 1
the c project compile ok
$ make Building project... mkdir -p bin mos-neo6502-clang -Os -o bin/helloworld.neo src/main.c rm bin/helloworld.neo.elf