SNES 65c816 C Compiler
Thanks to Lint i found a C compiler for the SNES. The Sdk is only for windows but i got i working with wine. So i managed to port one of Lint’s c sample code to unix makefile.You can fetch the fully working source: git://github.com/optixx/snes.git # SDK Config SDK=/home/david/.wine/drive_c/65xx_FreeSDK CC=$(SDK)/bin/WDC816CC.exe AS=$(SDK)/bin/WDC816AS.exe LD=$(SDK)/bin/WDCLN.exe # External Tools PADBIN=wine tools/padbin.exe PCX2SNES=wine tools/Pcx2Snes.exe # Project LIBS=$(SDK)/lib/cs OBJS=StartupSnes.obj main.obj pad.obj event.obj [...]
