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 [...]

Cool Intro

Found a cool intro including the sources…enjoy. Medium: www.vimeo.com Link: www.vimeo.com anthrox

Snes Pattern Sample

Todays and last sample is a simple pattern scroller… Medium: www.vimeo.com Link: www.vimeo.com pattern.tar.gz And now the further reading will be Yoshis Docs.

Todays Snes

Today i took the sprite sample from vintage dev and added some stuff from the NWI sample… Medium: www.vimeo.com Link: www.vimeo.com sprite.tar.gz

New Wordpress – One liner update

Just installed 2.7 wordpress. Here is a one liner for the brave one: curl http://wordpress.org/latest.zip -o “new.zip” \ && unzip new.zip \ && rm -rf ./wordpress/wp-content/ \ && cp -vr ./wordpress/* ~/htdocs/ \ && rm -fr new.zip wordpress

Its VBlank time

Today i do the vblank sample.There is an NMI mapped in the vetortable and do a funky color cycling in the handler…. Medium: www.vimeo.com Link: www.vimeo.com vblank

Snes VRAM Sample

Got the vintagedev vram sample working. Main thing was to find windows gfx conversion tools and get them working with linux… vramtar

Back into SNES DEV

Just started to work on some SNES stuff. Took a simple sample from vintagedev to get it working using linux as the development system. Added proper Makefile and made ubuntu wla packages. first.tar.gz wla-dx-9520081209-1i386.deb wlalink20081209-1i3861.deb

Disco Display

Medium: www.vimeo.com Link: www.vimeo.com Medium: www.vimeo.com Link: www.vimeo.com

Update on 64×48

Made some progress. Nice sunday hacking.