├── .gitignore ├── Instructions.md ├── README.md ├── ZX.md ├── basic.sh ├── basic ├── hello.bas └── loader.bas ├── beep.asm ├── bitmap.asm ├── clean.sh ├── hello.asm ├── images ├── horace.asm ├── horace.png ├── test.asm └── white.png ├── img2speccy.py ├── invader.asm ├── lib ├── constants.asm ├── draw_bitmap.asm ├── invader.asm ├── sound.asm └── upde.asm ├── run.sh ├── screen.asm ├── sound.asm └── speccy.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.tap 3 | -------------------------------------------------------------------------------- /Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/Instructions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/README.md -------------------------------------------------------------------------------- /ZX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/ZX.md -------------------------------------------------------------------------------- /basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/basic.sh -------------------------------------------------------------------------------- /basic/hello.bas: -------------------------------------------------------------------------------- 1 | 10 CLS 2 | 20 PRINT "HELLO WORLD!" 3 | -------------------------------------------------------------------------------- /basic/loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/basic/loader.bas -------------------------------------------------------------------------------- /beep.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/beep.asm -------------------------------------------------------------------------------- /bitmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/bitmap.asm -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/clean.sh -------------------------------------------------------------------------------- /hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/hello.asm -------------------------------------------------------------------------------- /images/horace.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/images/horace.asm -------------------------------------------------------------------------------- /images/horace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/images/horace.png -------------------------------------------------------------------------------- /images/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/images/test.asm -------------------------------------------------------------------------------- /images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/images/white.png -------------------------------------------------------------------------------- /img2speccy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/img2speccy.py -------------------------------------------------------------------------------- /invader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/invader.asm -------------------------------------------------------------------------------- /lib/constants.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/lib/constants.asm -------------------------------------------------------------------------------- /lib/draw_bitmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/lib/draw_bitmap.asm -------------------------------------------------------------------------------- /lib/invader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/lib/invader.asm -------------------------------------------------------------------------------- /lib/sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/lib/sound.asm -------------------------------------------------------------------------------- /lib/upde.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/lib/upde.asm -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/run.sh -------------------------------------------------------------------------------- /screen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/screen.asm -------------------------------------------------------------------------------- /sound.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/sound.asm -------------------------------------------------------------------------------- /speccy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OniDaito/speccy/HEAD/speccy.png --------------------------------------------------------------------------------