├── .gitattributes ├── HorizontalScrolling ├── Bank80.asm ├── DataBank.asm ├── SNESDef.asm ├── build_run.bat ├── horizontal.list ├── horizontal.sfc ├── horizontal.tass ├── master.asm ├── readme.md ├── spotty.chr ├── spotty.map ├── spotty.pal ├── spotty_col1.blk ├── spotty_col2.blk ├── spotty_col3.blk └── spotty_col4.blk ├── LearningSNESViaTheClassics ├── 0_RandomThings │ └── readme.md ├── 1_HelloWorld │ ├── BANK00.asm │ ├── master.asm │ ├── petscii.png │ └── readme.md ├── 2_Snake │ ├── BANK00.asm │ ├── master.asm │ ├── master_000.png │ ├── master_001.png │ ├── petscii.chr │ ├── petscii.pal │ ├── petscii.png │ └── readme.md └── 3_Squash │ ├── BANK00.asm │ ├── ballAndRacket.png │ ├── ballColl.png │ ├── master.asm │ ├── petscii.chr │ ├── petscii.pal │ ├── petscii.png │ ├── readme.md │ ├── sprite.chr │ └── sprite.pal ├── VerticalScrolling ├── Bank80.asm ├── DataBank.asm ├── SNESDef.asm ├── build_run.bat ├── master.asm ├── outlaw.chr ├── outlaw.pal ├── outlaw_col0.map ├── outlaw_col1.map ├── outlaw_col2.map ├── outlaw_col3.map ├── outlaw_col4.map ├── outlaw_col5.map ├── outlaw_col6.map ├── outlaw_col7.map ├── outlaw_row1.blk ├── outlaw_row2.blk ├── outlaw_row3.blk ├── outlaw_row4.blk ├── outlaw_row5.blk ├── readme.md ├── vertical.list ├── vertical.sfc └── vertical.tass ├── Vid4 ├── AnimCode.asm ├── AnimDataLo.asm ├── Bank80.asm ├── SpriteData.bin ├── assemble.asm └── master.asm ├── Vid5 └── JustOAMDMA.asm └── Vid6 └── spriteStack.asm /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /HorizontalScrolling/Bank80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/Bank80.asm -------------------------------------------------------------------------------- /HorizontalScrolling/DataBank.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HorizontalScrolling/SNESDef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/SNESDef.asm -------------------------------------------------------------------------------- /HorizontalScrolling/build_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/build_run.bat -------------------------------------------------------------------------------- /HorizontalScrolling/horizontal.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/horizontal.list -------------------------------------------------------------------------------- /HorizontalScrolling/horizontal.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/horizontal.sfc -------------------------------------------------------------------------------- /HorizontalScrolling/horizontal.tass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/horizontal.tass -------------------------------------------------------------------------------- /HorizontalScrolling/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/master.asm -------------------------------------------------------------------------------- /HorizontalScrolling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/readme.md -------------------------------------------------------------------------------- /HorizontalScrolling/spotty.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty.chr -------------------------------------------------------------------------------- /HorizontalScrolling/spotty.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty.map -------------------------------------------------------------------------------- /HorizontalScrolling/spotty.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty.pal -------------------------------------------------------------------------------- /HorizontalScrolling/spotty_col1.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty_col1.blk -------------------------------------------------------------------------------- /HorizontalScrolling/spotty_col2.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty_col2.blk -------------------------------------------------------------------------------- /HorizontalScrolling/spotty_col3.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty_col3.blk -------------------------------------------------------------------------------- /HorizontalScrolling/spotty_col4.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/HorizontalScrolling/spotty_col4.blk -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/0_RandomThings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/0_RandomThings/readme.md -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/1_HelloWorld/BANK00.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/1_HelloWorld/BANK00.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/1_HelloWorld/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/1_HelloWorld/master.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/1_HelloWorld/petscii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/1_HelloWorld/petscii.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/1_HelloWorld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/1_HelloWorld/readme.md -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/BANK00.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/BANK00.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/master.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/master_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/master_000.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/master_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/master_001.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/petscii.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/petscii.chr -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/petscii.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/petscii.pal -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/petscii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/petscii.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/2_Snake/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/2_Snake/readme.md -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/BANK00.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/BANK00.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/ballAndRacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/ballAndRacket.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/ballColl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/ballColl.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/master.asm -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/petscii.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/petscii.chr -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/petscii.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/petscii.pal -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/petscii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/petscii.png -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/readme.md -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/sprite.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/sprite.chr -------------------------------------------------------------------------------- /LearningSNESViaTheClassics/3_Squash/sprite.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/LearningSNESViaTheClassics/3_Squash/sprite.pal -------------------------------------------------------------------------------- /VerticalScrolling/Bank80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/Bank80.asm -------------------------------------------------------------------------------- /VerticalScrolling/DataBank.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VerticalScrolling/SNESDef.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/SNESDef.asm -------------------------------------------------------------------------------- /VerticalScrolling/build_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/build_run.bat -------------------------------------------------------------------------------- /VerticalScrolling/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/master.asm -------------------------------------------------------------------------------- /VerticalScrolling/outlaw.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw.chr -------------------------------------------------------------------------------- /VerticalScrolling/outlaw.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw.pal -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col0.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col1.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col2.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col3.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col4.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col5.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col6.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_col7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_col7.map -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_row1.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_row1.blk -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_row2.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_row2.blk -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_row3.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_row3.blk -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_row4.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_row4.blk -------------------------------------------------------------------------------- /VerticalScrolling/outlaw_row5.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/outlaw_row5.blk -------------------------------------------------------------------------------- /VerticalScrolling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/readme.md -------------------------------------------------------------------------------- /VerticalScrolling/vertical.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/vertical.list -------------------------------------------------------------------------------- /VerticalScrolling/vertical.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/vertical.sfc -------------------------------------------------------------------------------- /VerticalScrolling/vertical.tass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/VerticalScrolling/vertical.tass -------------------------------------------------------------------------------- /Vid4/AnimCode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid4/AnimCode.asm -------------------------------------------------------------------------------- /Vid4/AnimDataLo.asm: -------------------------------------------------------------------------------- 1 | .byte ? 2 | -------------------------------------------------------------------------------- /Vid4/Bank80.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid4/Bank80.asm -------------------------------------------------------------------------------- /Vid4/SpriteData.bin: -------------------------------------------------------------------------------- 1 | SpriteData.bin 2 | -------------------------------------------------------------------------------- /Vid4/assemble.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid4/assemble.asm -------------------------------------------------------------------------------- /Vid4/master.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid4/master.asm -------------------------------------------------------------------------------- /Vid5/JustOAMDMA.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid5/JustOAMDMA.asm -------------------------------------------------------------------------------- /Vid6/spriteStack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oziphantom/ElementsSnesEngine/HEAD/Vid6/spriteStack.asm --------------------------------------------------------------------------------