├── Makefile ├── README.md ├── blaze.bmp ├── caixa.bmp ├── dano.wav ├── data.asm ├── fase11BG1.bmp ├── fase11BG2.bmp ├── frames.bmp ├── galsia.bmp ├── hdr.asm ├── hud.bmp ├── music.it ├── signal.bmp ├── soco.wav ├── sor2.c ├── sor2_snes.sfc ├── sor2_snes_enemy_walking_demo.sfc ├── soundbank.asm ├── soundbank.bnk └── soundbank.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/README.md -------------------------------------------------------------------------------- /blaze.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/blaze.bmp -------------------------------------------------------------------------------- /caixa.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/caixa.bmp -------------------------------------------------------------------------------- /dano.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/dano.wav -------------------------------------------------------------------------------- /data.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/data.asm -------------------------------------------------------------------------------- /fase11BG1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/fase11BG1.bmp -------------------------------------------------------------------------------- /fase11BG2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/fase11BG2.bmp -------------------------------------------------------------------------------- /frames.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/frames.bmp -------------------------------------------------------------------------------- /galsia.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/galsia.bmp -------------------------------------------------------------------------------- /hdr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/hdr.asm -------------------------------------------------------------------------------- /hud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/hud.bmp -------------------------------------------------------------------------------- /music.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/music.it -------------------------------------------------------------------------------- /signal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/signal.bmp -------------------------------------------------------------------------------- /soco.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/soco.wav -------------------------------------------------------------------------------- /sor2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/sor2.c -------------------------------------------------------------------------------- /sor2_snes.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/sor2_snes.sfc -------------------------------------------------------------------------------- /sor2_snes_enemy_walking_demo.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/sor2_snes_enemy_walking_demo.sfc -------------------------------------------------------------------------------- /soundbank.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/soundbank.asm -------------------------------------------------------------------------------- /soundbank.bnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/soundbank.bnk -------------------------------------------------------------------------------- /soundbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odelot/sor2_snes/HEAD/soundbank.h --------------------------------------------------------------------------------