But I'm using your makefile, so it should be calling arm-none-eabi-gcc.
EDIT: I changed "%.o : %.S" to "%.o : %.s", and it's working better. However, it's still saying...
1 2 3 4 5 6 7 8
| main.s: Assembler messages: main.s:75: Error: ARM register expected -- `mov cpu_a,#0' main.s:76: Error: ARM register expected -- `mov cpu_x,#0' main.s:77: Error: ARM register expected -- `mov cpu_y,#0' main.s:78: Error: ARM register expected -- `mov cpu_sp,#0x100' main.s:79: Error: ARM register expected -- `mov cpu_flags,#0' make: *** [main.o] Error 1
|
...which makes me think it's not including nes.inc. Still, I don't have much to solve at this point. (I think)