pewpew/README.md

16 lines
484 B
Markdown
Raw Normal View History

2015-05-31 21:24:04 +00:00
Simple SNES shoot-'em-up game.
Run build.bat to build it. Assumes you have the wla assembler binaries and Neviksti's pcx2snes somewhere on your path.
2015-05-31 21:33:32 +00:00
The main files are:
2015-05-31 21:33:45 +00:00
2015-05-31 21:33:32 +00:00
pewpew.asm: main code file.
2015-05-31 21:33:45 +00:00
2015-05-31 21:33:32 +00:00
memory.asm: definitions of variable names (and memory layout) used by the game.
2015-05-31 21:33:45 +00:00
2015-05-31 21:33:32 +00:00
registers.asm: definitions & documentation of important SNES registers.
2015-05-31 21:33:45 +00:00
2015-05-31 21:33:32 +00:00
header.asm: definition of ROM layout & SNES header information for wla.
2015-05-31 21:33:45 +00:00
2015-05-31 21:33:32 +00:00
init.asm: boilerplate "initialize the hardware" macro.