├── Makefile ├── README.md ├── actor.s ├── actordata.s ├── ai.s ├── aligneddata.s ├── bg ├── names.txt ├── scorescr.chr ├── world.chr ├── world.map ├── world00.blc ├── world00.bli ├── world00.blk ├── world00.chr ├── world00.lva ├── world00.lvo ├── world00.map ├── world00.oba ├── worlddata.s ├── worldglobal.s └── worldinfo.s ├── boot.s ├── charset00.s ├── defines.s ├── eapi-am29f040-14.bin ├── efboot.s ├── example.d64 ├── example.seq ├── examplecart.seq ├── exampleef.crt ├── examplegmod2.crt ├── exomizer.s ├── file.s ├── gmod2boot.s ├── init.s ├── input.s ├── kernal.s ├── ldepack.s ├── ldepacksym.txt ├── level.s ├── loader.s ├── loadsym.txt ├── macros.s ├── main.s ├── math.s ├── memory.s ├── miscdata.s ├── music └── example.sng ├── panel.s ├── physics.s ├── playroutinedata.s ├── raster.s ├── screen.s ├── script00.s ├── sound.s ├── sounddata.s ├── spr ├── common.spr ├── common.spr.res ├── enemy.spr ├── enemy.spr.res ├── player.spr ├── player.spr.res └── spredit.cfg ├── sprite.s └── tools ├── Makefile ├── SDL.dll ├── bme.c ├── bme.h ├── bme_cfg.h ├── bme_err.h ├── bme_gfx.c ├── bme_gfx.h ├── bme_io.c ├── bme_io.h ├── bme_joy.c ├── bme_joy.h ├── bme_kbd.c ├── bme_kbd.h ├── bme_main.h ├── bme_map.c ├── bme_map.h ├── bme_mod.c ├── bme_mou.c ├── bme_mou.h ├── bme_raw.c ├── bme_s3m.c ├── bme_smp.c ├── bme_snd.c ├── bme_snd.h ├── bme_tbl.c ├── bme_tbl.h ├── bme_txt.c ├── bme_txt.h ├── bme_wav.c ├── bme_win.c ├── bme_win.h ├── bme_xm.c ├── bmeconv.c ├── bmeconv.exe ├── cp.bat ├── dasm.exe ├── dat2inc.c ├── dat2inc.exe ├── datafile.c ├── datafile.exe ├── editdata.c ├── editfont.lbm ├── editfont.spr ├── editio.h ├── editor.dat ├── editor.lbm ├── editor.pal ├── editor.spr ├── exomizer3.exe ├── fileio.c ├── fileio.h ├── filejoin.c ├── filejoin.exe ├── filelist.txt ├── filesplit.c ├── filesplit.exe ├── gcommon.h ├── gfxconv.c ├── gfxconv.exe ├── gt2mini.c ├── gt2mini.exe ├── maked64.c ├── maked64.exe ├── makeef.cpp ├── makeef.exe ├── makegmod2.cpp ├── makegmod2.exe ├── pack3.c ├── pack3.exe ├── pchunk3.c ├── pchunk3.exe ├── spred3.cpp ├── spred3.exe ├── stb_image_write.c ├── stb_image_write.h ├── symbols.c ├── symbols.exe ├── usecount.cpp ├── usecount.exe ├── worlded3.cpp └── worlded3.exe /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/README.md -------------------------------------------------------------------------------- /actor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/actor.s -------------------------------------------------------------------------------- /actordata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/actordata.s -------------------------------------------------------------------------------- /ai.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/ai.s -------------------------------------------------------------------------------- /aligneddata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/aligneddata.s -------------------------------------------------------------------------------- /bg/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/names.txt -------------------------------------------------------------------------------- /bg/scorescr.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/scorescr.chr -------------------------------------------------------------------------------- /bg/world.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world.chr -------------------------------------------------------------------------------- /bg/world.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world.map -------------------------------------------------------------------------------- /bg/world00.blc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.blc -------------------------------------------------------------------------------- /bg/world00.bli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.bli -------------------------------------------------------------------------------- /bg/world00.blk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.blk -------------------------------------------------------------------------------- /bg/world00.chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.chr -------------------------------------------------------------------------------- /bg/world00.lva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.lva -------------------------------------------------------------------------------- /bg/world00.lvo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.lvo -------------------------------------------------------------------------------- /bg/world00.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/world00.map -------------------------------------------------------------------------------- /bg/world00.oba: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bg/worlddata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/worlddata.s -------------------------------------------------------------------------------- /bg/worldglobal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/worldglobal.s -------------------------------------------------------------------------------- /bg/worldinfo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/bg/worldinfo.s -------------------------------------------------------------------------------- /boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/boot.s -------------------------------------------------------------------------------- /charset00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/charset00.s -------------------------------------------------------------------------------- /defines.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/defines.s -------------------------------------------------------------------------------- /eapi-am29f040-14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/eapi-am29f040-14.bin -------------------------------------------------------------------------------- /efboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/efboot.s -------------------------------------------------------------------------------- /example.d64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/example.d64 -------------------------------------------------------------------------------- /example.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/example.seq -------------------------------------------------------------------------------- /examplecart.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/examplecart.seq -------------------------------------------------------------------------------- /exampleef.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/exampleef.crt -------------------------------------------------------------------------------- /examplegmod2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/examplegmod2.crt -------------------------------------------------------------------------------- /exomizer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/exomizer.s -------------------------------------------------------------------------------- /file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/file.s -------------------------------------------------------------------------------- /gmod2boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/gmod2boot.s -------------------------------------------------------------------------------- /init.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/init.s -------------------------------------------------------------------------------- /input.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/input.s -------------------------------------------------------------------------------- /kernal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/kernal.s -------------------------------------------------------------------------------- /ldepack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/ldepack.s -------------------------------------------------------------------------------- /ldepacksym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/ldepacksym.txt -------------------------------------------------------------------------------- /level.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/level.s -------------------------------------------------------------------------------- /loader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/loader.s -------------------------------------------------------------------------------- /loadsym.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/loadsym.txt -------------------------------------------------------------------------------- /macros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/macros.s -------------------------------------------------------------------------------- /main.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/main.s -------------------------------------------------------------------------------- /math.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/math.s -------------------------------------------------------------------------------- /memory.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/memory.s -------------------------------------------------------------------------------- /miscdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/miscdata.s -------------------------------------------------------------------------------- /music/example.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/music/example.sng -------------------------------------------------------------------------------- /panel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/panel.s -------------------------------------------------------------------------------- /physics.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/physics.s -------------------------------------------------------------------------------- /playroutinedata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/playroutinedata.s -------------------------------------------------------------------------------- /raster.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/raster.s -------------------------------------------------------------------------------- /screen.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/screen.s -------------------------------------------------------------------------------- /script00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/script00.s -------------------------------------------------------------------------------- /sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/sound.s -------------------------------------------------------------------------------- /sounddata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/sounddata.s -------------------------------------------------------------------------------- /spr/common.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/common.spr -------------------------------------------------------------------------------- /spr/common.spr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/common.spr.res -------------------------------------------------------------------------------- /spr/enemy.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/enemy.spr -------------------------------------------------------------------------------- /spr/enemy.spr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/enemy.spr.res -------------------------------------------------------------------------------- /spr/player.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/player.spr -------------------------------------------------------------------------------- /spr/player.spr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/spr/player.spr.res -------------------------------------------------------------------------------- /spr/spredit.cfg: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /sprite.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/sprite.s -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/SDL.dll -------------------------------------------------------------------------------- /tools/bme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme.c -------------------------------------------------------------------------------- /tools/bme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme.h -------------------------------------------------------------------------------- /tools/bme_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_cfg.h -------------------------------------------------------------------------------- /tools/bme_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_err.h -------------------------------------------------------------------------------- /tools/bme_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_gfx.c -------------------------------------------------------------------------------- /tools/bme_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_gfx.h -------------------------------------------------------------------------------- /tools/bme_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_io.c -------------------------------------------------------------------------------- /tools/bme_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_io.h -------------------------------------------------------------------------------- /tools/bme_joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_joy.c -------------------------------------------------------------------------------- /tools/bme_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_joy.h -------------------------------------------------------------------------------- /tools/bme_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_kbd.c -------------------------------------------------------------------------------- /tools/bme_kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_kbd.h -------------------------------------------------------------------------------- /tools/bme_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_main.h -------------------------------------------------------------------------------- /tools/bme_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_map.c -------------------------------------------------------------------------------- /tools/bme_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_map.h -------------------------------------------------------------------------------- /tools/bme_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_mod.c -------------------------------------------------------------------------------- /tools/bme_mou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_mou.c -------------------------------------------------------------------------------- /tools/bme_mou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_mou.h -------------------------------------------------------------------------------- /tools/bme_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_raw.c -------------------------------------------------------------------------------- /tools/bme_s3m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_s3m.c -------------------------------------------------------------------------------- /tools/bme_smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_smp.c -------------------------------------------------------------------------------- /tools/bme_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_snd.c -------------------------------------------------------------------------------- /tools/bme_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_snd.h -------------------------------------------------------------------------------- /tools/bme_tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_tbl.c -------------------------------------------------------------------------------- /tools/bme_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_tbl.h -------------------------------------------------------------------------------- /tools/bme_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_txt.c -------------------------------------------------------------------------------- /tools/bme_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_txt.h -------------------------------------------------------------------------------- /tools/bme_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_wav.c -------------------------------------------------------------------------------- /tools/bme_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_win.c -------------------------------------------------------------------------------- /tools/bme_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_win.h -------------------------------------------------------------------------------- /tools/bme_xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bme_xm.c -------------------------------------------------------------------------------- /tools/bmeconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bmeconv.c -------------------------------------------------------------------------------- /tools/bmeconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/bmeconv.exe -------------------------------------------------------------------------------- /tools/cp.bat: -------------------------------------------------------------------------------- 1 | copy *.exe c:\programs -------------------------------------------------------------------------------- /tools/dasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/dasm.exe -------------------------------------------------------------------------------- /tools/dat2inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/dat2inc.c -------------------------------------------------------------------------------- /tools/dat2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/dat2inc.exe -------------------------------------------------------------------------------- /tools/datafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/datafile.c -------------------------------------------------------------------------------- /tools/datafile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/datafile.exe -------------------------------------------------------------------------------- /tools/editdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editdata.c -------------------------------------------------------------------------------- /tools/editfont.lbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editfont.lbm -------------------------------------------------------------------------------- /tools/editfont.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editfont.spr -------------------------------------------------------------------------------- /tools/editio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editio.h -------------------------------------------------------------------------------- /tools/editor.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editor.dat -------------------------------------------------------------------------------- /tools/editor.lbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editor.lbm -------------------------------------------------------------------------------- /tools/editor.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editor.pal -------------------------------------------------------------------------------- /tools/editor.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/editor.spr -------------------------------------------------------------------------------- /tools/exomizer3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/exomizer3.exe -------------------------------------------------------------------------------- /tools/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/fileio.c -------------------------------------------------------------------------------- /tools/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/fileio.h -------------------------------------------------------------------------------- /tools/filejoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/filejoin.c -------------------------------------------------------------------------------- /tools/filejoin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/filejoin.exe -------------------------------------------------------------------------------- /tools/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/filelist.txt -------------------------------------------------------------------------------- /tools/filesplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/filesplit.c -------------------------------------------------------------------------------- /tools/filesplit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/filesplit.exe -------------------------------------------------------------------------------- /tools/gcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/gcommon.h -------------------------------------------------------------------------------- /tools/gfxconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/gfxconv.c -------------------------------------------------------------------------------- /tools/gfxconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/gfxconv.exe -------------------------------------------------------------------------------- /tools/gt2mini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/gt2mini.c -------------------------------------------------------------------------------- /tools/gt2mini.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/gt2mini.exe -------------------------------------------------------------------------------- /tools/maked64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/maked64.c -------------------------------------------------------------------------------- /tools/maked64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/maked64.exe -------------------------------------------------------------------------------- /tools/makeef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/makeef.cpp -------------------------------------------------------------------------------- /tools/makeef.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/makeef.exe -------------------------------------------------------------------------------- /tools/makegmod2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/makegmod2.cpp -------------------------------------------------------------------------------- /tools/makegmod2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/makegmod2.exe -------------------------------------------------------------------------------- /tools/pack3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/pack3.c -------------------------------------------------------------------------------- /tools/pack3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/pack3.exe -------------------------------------------------------------------------------- /tools/pchunk3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/pchunk3.c -------------------------------------------------------------------------------- /tools/pchunk3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/pchunk3.exe -------------------------------------------------------------------------------- /tools/spred3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/spred3.cpp -------------------------------------------------------------------------------- /tools/spred3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/spred3.exe -------------------------------------------------------------------------------- /tools/stb_image_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/stb_image_write.c -------------------------------------------------------------------------------- /tools/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/stb_image_write.h -------------------------------------------------------------------------------- /tools/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/symbols.c -------------------------------------------------------------------------------- /tools/symbols.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/symbols.exe -------------------------------------------------------------------------------- /tools/usecount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/usecount.cpp -------------------------------------------------------------------------------- /tools/usecount.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/usecount.exe -------------------------------------------------------------------------------- /tools/worlded3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/worlded3.cpp -------------------------------------------------------------------------------- /tools/worlded3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadaver/c64gameframework/HEAD/tools/worlded3.exe --------------------------------------------------------------------------------