├── .gitignore ├── ORIGINAL_DISK ├── !BOOT ├── !BOOT.inf ├── COMM ├── COMM.inf ├── COMM2#.bin ├── COMM2#.inf ├── COMMAND └── COMMAND.inf ├── README.md ├── documents ├── angles.png ├── angles2.png ├── atan2-fast.png ├── atan2-orig.png ├── atan2-toby.png ├── circle.png ├── enemy1.gif ├── enemy1_mono.gif ├── enemy2.gif ├── enemy2_mono.gif └── old_enemy.png ├── go_acme ├── source ├── boot.asm ├── exo.asm ├── loader2.asm ├── sc_loader_text.txt ├── sc_text.txt ├── starcommand_acme.asm └── tape.asm ├── templates └── EMPTY.ssd └── tools ├── acme ├── image.py ├── maketape.pl ├── post_process.py └── text_compression.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/.gitignore -------------------------------------------------------------------------------- /ORIGINAL_DISK/!BOOT: -------------------------------------------------------------------------------- 1 | *BASIC PAGE=&1900 *FX21 CLOSE#0:CHAIN "COMM" -------------------------------------------------------------------------------- /ORIGINAL_DISK/!BOOT.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/!BOOT.inf -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMM -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMM.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMM.inf -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMM2#.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMM2#.bin -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMM2#.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMM2#.inf -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMMAND: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMMAND -------------------------------------------------------------------------------- /ORIGINAL_DISK/COMMAND.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/ORIGINAL_DISK/COMMAND.inf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/README.md -------------------------------------------------------------------------------- /documents/angles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/angles.png -------------------------------------------------------------------------------- /documents/angles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/angles2.png -------------------------------------------------------------------------------- /documents/atan2-fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/atan2-fast.png -------------------------------------------------------------------------------- /documents/atan2-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/atan2-orig.png -------------------------------------------------------------------------------- /documents/atan2-toby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/atan2-toby.png -------------------------------------------------------------------------------- /documents/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/circle.png -------------------------------------------------------------------------------- /documents/enemy1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/enemy1.gif -------------------------------------------------------------------------------- /documents/enemy1_mono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/enemy1_mono.gif -------------------------------------------------------------------------------- /documents/enemy2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/enemy2.gif -------------------------------------------------------------------------------- /documents/enemy2_mono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/enemy2_mono.gif -------------------------------------------------------------------------------- /documents/old_enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/documents/old_enemy.png -------------------------------------------------------------------------------- /go_acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/go_acme -------------------------------------------------------------------------------- /source/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/boot.asm -------------------------------------------------------------------------------- /source/exo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/exo.asm -------------------------------------------------------------------------------- /source/loader2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/loader2.asm -------------------------------------------------------------------------------- /source/sc_loader_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/sc_loader_text.txt -------------------------------------------------------------------------------- /source/sc_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/sc_text.txt -------------------------------------------------------------------------------- /source/starcommand_acme.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/starcommand_acme.asm -------------------------------------------------------------------------------- /source/tape.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/source/tape.asm -------------------------------------------------------------------------------- /templates/EMPTY.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/templates/EMPTY.ssd -------------------------------------------------------------------------------- /tools/acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/tools/acme -------------------------------------------------------------------------------- /tools/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/tools/image.py -------------------------------------------------------------------------------- /tools/maketape.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/tools/maketape.pl -------------------------------------------------------------------------------- /tools/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/tools/post_process.py -------------------------------------------------------------------------------- /tools/text_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobyLobster/StarshipCommand2022/HEAD/tools/text_compression.py --------------------------------------------------------------------------------