├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── Makefile ├── benchmark_bitfire.ods ├── checksum.asm └── files │ ├── a │ ├── a.lz │ ├── b │ ├── b.lz │ ├── c │ ├── c.lz │ ├── d │ ├── d.lz │ ├── e │ ├── e.lz │ ├── f │ ├── f.lz │ ├── g │ ├── g.lz │ ├── h │ ├── h.lz │ ├── i │ ├── i.lz │ ├── j │ ├── j.lz │ ├── k │ ├── k.lz │ ├── l │ ├── l.lz │ ├── m │ ├── m.lz │ ├── n │ ├── n.lz │ ├── o │ ├── o.lz │ ├── p │ ├── p.lz │ ├── q │ ├── q.lz │ ├── r │ └── r.lz ├── changelog ├── config.inc ├── crtwrite ├── Makefile ├── bootstrap.asm ├── crtwrite.c ├── debug.h └── loop.asm ├── d64write ├── Makefile ├── d64.h ├── d64write.c ├── debug.h ├── romchar.h └── stb_image.h ├── example ├── depack_only │ ├── Makefile │ └── example.asm ├── dirart │ ├── exampledir.bin │ └── exampledir.png ├── example_project │ ├── bitfire │ │ └── place_bitfire_as_a_submodule_here │ ├── bootstrap │ │ ├── Makefile │ │ └── boot.asm │ ├── config.inc │ ├── installer │ │ ├── Makefile │ │ └── installer.asm │ ├── link │ │ └── Makefile.example.for.demo.build │ └── music.inc └── loadertest │ ├── Makefile │ ├── example.asm │ └── files │ ├── pic1.bin │ └── pic2.bin ├── loader ├── Makefile ├── constants.inc ├── detect.asm ├── drivecode.asm ├── frag.c ├── gcr_tables.c ├── gcrstream.c ├── installer.asm ├── resident.asm ├── tables1 └── tables2 ├── macros ├── Makefile ├── convert.sh ├── link_macros_64tass.inc ├── link_macros_acme.inc ├── link_macros_ca65.inc ├── link_macros_dasm.inc ├── link_macros_dreamass.inc └── link_macros_kickass.inc ├── music.inc ├── packer ├── dali │ ├── Makefile │ ├── dali.c │ ├── dzx0_dali.asm │ ├── dzx0_orig_zx0_v1.asm │ ├── dzx0_orig_zx0_v2.asm │ ├── example.asm │ └── sfx.asm └── zx0 │ ├── 6502 │ ├── Makefile │ ├── depack.asm │ ├── dzx0_v1.asm │ ├── dzx0_v2.asm │ ├── testfile │ └── testfile.zx0 │ ├── LICENSE │ ├── Makefile │ ├── compress.c │ ├── compress.h │ ├── dzx0.c │ ├── optimize.c │ ├── optimize.h │ ├── sfx.asm │ ├── zx0.c │ └── zx0.h ├── readme.txt └── syncpoints.inc /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/Makefile -------------------------------------------------------------------------------- /benchmark/benchmark_bitfire.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/benchmark_bitfire.ods -------------------------------------------------------------------------------- /benchmark/checksum.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/checksum.asm -------------------------------------------------------------------------------- /benchmark/files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/a -------------------------------------------------------------------------------- /benchmark/files/a.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/a.lz -------------------------------------------------------------------------------- /benchmark/files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/b -------------------------------------------------------------------------------- /benchmark/files/b.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/b.lz -------------------------------------------------------------------------------- /benchmark/files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/c -------------------------------------------------------------------------------- /benchmark/files/c.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/c.lz -------------------------------------------------------------------------------- /benchmark/files/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/d -------------------------------------------------------------------------------- /benchmark/files/d.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/d.lz -------------------------------------------------------------------------------- /benchmark/files/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/e -------------------------------------------------------------------------------- /benchmark/files/e.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/e.lz -------------------------------------------------------------------------------- /benchmark/files/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/f -------------------------------------------------------------------------------- /benchmark/files/f.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/f.lz -------------------------------------------------------------------------------- /benchmark/files/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/g -------------------------------------------------------------------------------- /benchmark/files/g.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/g.lz -------------------------------------------------------------------------------- /benchmark/files/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/h -------------------------------------------------------------------------------- /benchmark/files/h.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/h.lz -------------------------------------------------------------------------------- /benchmark/files/i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/i -------------------------------------------------------------------------------- /benchmark/files/i.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/i.lz -------------------------------------------------------------------------------- /benchmark/files/j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/j -------------------------------------------------------------------------------- /benchmark/files/j.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/j.lz -------------------------------------------------------------------------------- /benchmark/files/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/k -------------------------------------------------------------------------------- /benchmark/files/k.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/k.lz -------------------------------------------------------------------------------- /benchmark/files/l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/l -------------------------------------------------------------------------------- /benchmark/files/l.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/l.lz -------------------------------------------------------------------------------- /benchmark/files/m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/m -------------------------------------------------------------------------------- /benchmark/files/m.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/m.lz -------------------------------------------------------------------------------- /benchmark/files/n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/n -------------------------------------------------------------------------------- /benchmark/files/n.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/n.lz -------------------------------------------------------------------------------- /benchmark/files/o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/o -------------------------------------------------------------------------------- /benchmark/files/o.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/o.lz -------------------------------------------------------------------------------- /benchmark/files/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/p -------------------------------------------------------------------------------- /benchmark/files/p.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/p.lz -------------------------------------------------------------------------------- /benchmark/files/q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/q -------------------------------------------------------------------------------- /benchmark/files/q.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/q.lz -------------------------------------------------------------------------------- /benchmark/files/r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/r -------------------------------------------------------------------------------- /benchmark/files/r.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/benchmark/files/r.lz -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/changelog -------------------------------------------------------------------------------- /config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/config.inc -------------------------------------------------------------------------------- /crtwrite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/crtwrite/Makefile -------------------------------------------------------------------------------- /crtwrite/bootstrap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/crtwrite/bootstrap.asm -------------------------------------------------------------------------------- /crtwrite/crtwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/crtwrite/crtwrite.c -------------------------------------------------------------------------------- /crtwrite/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/crtwrite/debug.h -------------------------------------------------------------------------------- /crtwrite/loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/crtwrite/loop.asm -------------------------------------------------------------------------------- /d64write/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/Makefile -------------------------------------------------------------------------------- /d64write/d64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/d64.h -------------------------------------------------------------------------------- /d64write/d64write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/d64write.c -------------------------------------------------------------------------------- /d64write/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/debug.h -------------------------------------------------------------------------------- /d64write/romchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/romchar.h -------------------------------------------------------------------------------- /d64write/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/d64write/stb_image.h -------------------------------------------------------------------------------- /example/depack_only/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/depack_only/Makefile -------------------------------------------------------------------------------- /example/depack_only/example.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/depack_only/example.asm -------------------------------------------------------------------------------- /example/dirart/exampledir.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/dirart/exampledir.bin -------------------------------------------------------------------------------- /example/dirart/exampledir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/dirart/exampledir.png -------------------------------------------------------------------------------- /example/example_project/bitfire/place_bitfire_as_a_submodule_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example_project/bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/bootstrap/Makefile -------------------------------------------------------------------------------- /example/example_project/bootstrap/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/bootstrap/boot.asm -------------------------------------------------------------------------------- /example/example_project/config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/config.inc -------------------------------------------------------------------------------- /example/example_project/installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/installer/Makefile -------------------------------------------------------------------------------- /example/example_project/installer/installer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/installer/installer.asm -------------------------------------------------------------------------------- /example/example_project/link/Makefile.example.for.demo.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/link/Makefile.example.for.demo.build -------------------------------------------------------------------------------- /example/example_project/music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/example_project/music.inc -------------------------------------------------------------------------------- /example/loadertest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/loadertest/Makefile -------------------------------------------------------------------------------- /example/loadertest/example.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/loadertest/example.asm -------------------------------------------------------------------------------- /example/loadertest/files/pic1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/loadertest/files/pic1.bin -------------------------------------------------------------------------------- /example/loadertest/files/pic2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/example/loadertest/files/pic2.bin -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/constants.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/constants.inc -------------------------------------------------------------------------------- /loader/detect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/detect.asm -------------------------------------------------------------------------------- /loader/drivecode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/drivecode.asm -------------------------------------------------------------------------------- /loader/frag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/frag.c -------------------------------------------------------------------------------- /loader/gcr_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/gcr_tables.c -------------------------------------------------------------------------------- /loader/gcrstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/gcrstream.c -------------------------------------------------------------------------------- /loader/installer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/installer.asm -------------------------------------------------------------------------------- /loader/resident.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/resident.asm -------------------------------------------------------------------------------- /loader/tables1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/tables1 -------------------------------------------------------------------------------- /loader/tables2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/loader/tables2 -------------------------------------------------------------------------------- /macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/Makefile -------------------------------------------------------------------------------- /macros/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/convert.sh -------------------------------------------------------------------------------- /macros/link_macros_64tass.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_64tass.inc -------------------------------------------------------------------------------- /macros/link_macros_acme.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_acme.inc -------------------------------------------------------------------------------- /macros/link_macros_ca65.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_ca65.inc -------------------------------------------------------------------------------- /macros/link_macros_dasm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_dasm.inc -------------------------------------------------------------------------------- /macros/link_macros_dreamass.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_dreamass.inc -------------------------------------------------------------------------------- /macros/link_macros_kickass.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/macros/link_macros_kickass.inc -------------------------------------------------------------------------------- /music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/music.inc -------------------------------------------------------------------------------- /packer/dali/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/Makefile -------------------------------------------------------------------------------- /packer/dali/dali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/dali.c -------------------------------------------------------------------------------- /packer/dali/dzx0_dali.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/dzx0_dali.asm -------------------------------------------------------------------------------- /packer/dali/dzx0_orig_zx0_v1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/dzx0_orig_zx0_v1.asm -------------------------------------------------------------------------------- /packer/dali/dzx0_orig_zx0_v2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/dzx0_orig_zx0_v2.asm -------------------------------------------------------------------------------- /packer/dali/example.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/example.asm -------------------------------------------------------------------------------- /packer/dali/sfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/dali/sfx.asm -------------------------------------------------------------------------------- /packer/zx0/6502/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/Makefile -------------------------------------------------------------------------------- /packer/zx0/6502/depack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/depack.asm -------------------------------------------------------------------------------- /packer/zx0/6502/dzx0_v1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/dzx0_v1.asm -------------------------------------------------------------------------------- /packer/zx0/6502/dzx0_v2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/dzx0_v2.asm -------------------------------------------------------------------------------- /packer/zx0/6502/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/testfile -------------------------------------------------------------------------------- /packer/zx0/6502/testfile.zx0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/6502/testfile.zx0 -------------------------------------------------------------------------------- /packer/zx0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/LICENSE -------------------------------------------------------------------------------- /packer/zx0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/Makefile -------------------------------------------------------------------------------- /packer/zx0/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/compress.c -------------------------------------------------------------------------------- /packer/zx0/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/compress.h -------------------------------------------------------------------------------- /packer/zx0/dzx0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/dzx0.c -------------------------------------------------------------------------------- /packer/zx0/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/optimize.c -------------------------------------------------------------------------------- /packer/zx0/optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/optimize.h -------------------------------------------------------------------------------- /packer/zx0/sfx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/sfx.asm -------------------------------------------------------------------------------- /packer/zx0/zx0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/zx0.c -------------------------------------------------------------------------------- /packer/zx0/zx0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/packer/zx0/zx0.h -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/readme.txt -------------------------------------------------------------------------------- /syncpoints.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bboxy/bitfire/HEAD/syncpoints.inc --------------------------------------------------------------------------------