├── .github └── README.md ├── .gitignore ├── authors ├── copying ├── examples ├── 2xtest.sng ├── cabrinigreen.sng ├── consultant.sng ├── dojo.sng ├── everlasting.sng ├── example1.prg ├── example2.prg ├── example3.prg ├── example4.prg ├── funktest.sng ├── ghosttrackers.sng ├── goatcompo.txt ├── hyperspace.sng ├── sanction.sng ├── sfx_arp1.ins ├── sfx_arp2.ins ├── sfx_expl.ins ├── sfx_gun.ins ├── sixpack.sng ├── src │ ├── example1.bin │ ├── example1.s │ ├── example2.bin │ ├── example2.s │ ├── example3.bin │ ├── example3.s │ ├── example4.bin │ ├── example4.s │ ├── makefile │ ├── sfx_arp1.s │ ├── sfx_arp2.s │ ├── sfx_expl.s │ └── sfx_gun.s ├── tempo2test.sng ├── transylvanian.sng ├── unleash.sng └── wavecmdtest.sng ├── goat_tracker_commands.pdf ├── linux └── goattracker.1 ├── morphos ├── ReadMe2Guide.rexx ├── goat_tracker_commands.pdf.info ├── goattracker.guide.info └── goattrk2.info ├── readme.txt ├── readme_resid.txt ├── readme_sdl.txt └── src ├── altplayer.s ├── asm ├── asmtab.c ├── asmtab.h ├── callback.h ├── chnkpool.c ├── chnkpool.h ├── expr.c ├── expr.h ├── int.h ├── lexyy.c ├── log.c ├── log.h ├── membuf.c ├── membuf.h ├── membufio.c ├── membufio.h ├── namedbuf.c ├── namedbuf.h ├── parse.c ├── parse.h ├── pc.c ├── pc.h ├── vec.c └── vec.h ├── bcursor.bin ├── bcursor.hex ├── bme ├── bme.c ├── bme.h ├── bme_cfg.h ├── bme_end.c ├── bme_end.h ├── bme_err.h ├── bme_gfx.c ├── bme_gfx.h ├── bme_io.c ├── bme_io.h ├── bme_joy.h ├── bme_kbd.c ├── bme_kbd.h ├── bme_main.h ├── bme_mou.c ├── bme_mou.h ├── bme_snd.c ├── bme_snd.h ├── bme_win.c ├── bme_win.h ├── dat2inc.c ├── dat2inc.exe ├── datafile.c ├── datafile.exe ├── makefile └── makefile.win ├── chargen.bin ├── cursor.bin ├── cursor.lbm ├── cwsid.h ├── gcommon.h ├── gconsole.c ├── gconsole.h ├── gdisplay.c ├── gdisplay.h ├── gfile.c ├── gfile.h ├── ghelp.c ├── ginstr.c ├── ginstr.h ├── goatdata.c ├── goattrk2.bmp ├── goattrk2.c ├── goattrk2.dat ├── goattrk2.h ├── goattrk2.ico ├── goattrk2.rc ├── goattrk2.res ├── goattrk2.seq ├── gorder.c ├── gorder.h ├── gpattern.c ├── gpattern.h ├── gplay.c ├── gplay.h ├── greloc.c ├── greloc.h ├── gsid.cpp ├── gsid.h ├── gsong.c ├── gsong.h ├── gsound.c ├── gsound.h ├── gt2reloc.c ├── gtable.c ├── gtable.h ├── gundo.c ├── gundo.h ├── ins2snd2.c ├── makefile ├── makefile.common ├── makefile.mos ├── makefile.win ├── makefile.xmingw32 ├── mod2sng.c ├── palette.bin ├── palette.lbm ├── player.s ├── resid-fp ├── envelopefp.cpp ├── envelopefp.h ├── extfiltfp.cpp ├── extfiltfp.h ├── filterfp.cpp ├── filterfp.h ├── potfp.cpp ├── potfp.h ├── siddefsfp.h ├── sidfp.cpp ├── sidfp.h ├── versionfp.cpp ├── voicefp.cpp ├── voicefp.h ├── wavefp.cpp └── wavefp.h ├── resid ├── envelope.cpp ├── envelope.h ├── extfilt.cpp ├── extfilt.h ├── filter.cpp ├── filter.h ├── pot.cpp ├── pot.h ├── sid.cpp ├── sid.h ├── siddefs.h ├── spline.h ├── version.cpp ├── voice.cpp ├── voice.h ├── wave.cpp ├── wave.h ├── wave6581_PST.cpp ├── wave6581_PS_.cpp ├── wave6581_P_T.cpp ├── wave6581__ST.cpp ├── wave8580_PST.cpp ├── wave8580_PS_.cpp ├── wave8580_P_T.cpp └── wave8580__ST.cpp └── sngspli2.c /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | linux/ 3 | *.o 4 | -------------------------------------------------------------------------------- /authors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/authors -------------------------------------------------------------------------------- /copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/copying -------------------------------------------------------------------------------- /examples/2xtest.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/2xtest.sng -------------------------------------------------------------------------------- /examples/cabrinigreen.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/cabrinigreen.sng -------------------------------------------------------------------------------- /examples/consultant.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/consultant.sng -------------------------------------------------------------------------------- /examples/dojo.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/dojo.sng -------------------------------------------------------------------------------- /examples/everlasting.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/everlasting.sng -------------------------------------------------------------------------------- /examples/example1.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/example1.prg -------------------------------------------------------------------------------- /examples/example2.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/example2.prg -------------------------------------------------------------------------------- /examples/example3.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/example3.prg -------------------------------------------------------------------------------- /examples/example4.prg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/example4.prg -------------------------------------------------------------------------------- /examples/funktest.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/funktest.sng -------------------------------------------------------------------------------- /examples/ghosttrackers.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/ghosttrackers.sng -------------------------------------------------------------------------------- /examples/goatcompo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/goatcompo.txt -------------------------------------------------------------------------------- /examples/hyperspace.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/hyperspace.sng -------------------------------------------------------------------------------- /examples/sanction.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sanction.sng -------------------------------------------------------------------------------- /examples/sfx_arp1.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sfx_arp1.ins -------------------------------------------------------------------------------- /examples/sfx_arp2.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sfx_arp2.ins -------------------------------------------------------------------------------- /examples/sfx_expl.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sfx_expl.ins -------------------------------------------------------------------------------- /examples/sfx_gun.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sfx_gun.ins -------------------------------------------------------------------------------- /examples/sixpack.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/sixpack.sng -------------------------------------------------------------------------------- /examples/src/example1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example1.bin -------------------------------------------------------------------------------- /examples/src/example1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example1.s -------------------------------------------------------------------------------- /examples/src/example2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example2.bin -------------------------------------------------------------------------------- /examples/src/example2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example2.s -------------------------------------------------------------------------------- /examples/src/example3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example3.bin -------------------------------------------------------------------------------- /examples/src/example3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example3.s -------------------------------------------------------------------------------- /examples/src/example4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example4.bin -------------------------------------------------------------------------------- /examples/src/example4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/example4.s -------------------------------------------------------------------------------- /examples/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/makefile -------------------------------------------------------------------------------- /examples/src/sfx_arp1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/sfx_arp1.s -------------------------------------------------------------------------------- /examples/src/sfx_arp2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/sfx_arp2.s -------------------------------------------------------------------------------- /examples/src/sfx_expl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/sfx_expl.s -------------------------------------------------------------------------------- /examples/src/sfx_gun.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/src/sfx_gun.s -------------------------------------------------------------------------------- /examples/tempo2test.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/tempo2test.sng -------------------------------------------------------------------------------- /examples/transylvanian.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/transylvanian.sng -------------------------------------------------------------------------------- /examples/unleash.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/unleash.sng -------------------------------------------------------------------------------- /examples/wavecmdtest.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/examples/wavecmdtest.sng -------------------------------------------------------------------------------- /goat_tracker_commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/goat_tracker_commands.pdf -------------------------------------------------------------------------------- /linux/goattracker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/linux/goattracker.1 -------------------------------------------------------------------------------- /morphos/ReadMe2Guide.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/morphos/ReadMe2Guide.rexx -------------------------------------------------------------------------------- /morphos/goat_tracker_commands.pdf.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/morphos/goat_tracker_commands.pdf.info -------------------------------------------------------------------------------- /morphos/goattracker.guide.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/morphos/goattracker.guide.info -------------------------------------------------------------------------------- /morphos/goattrk2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/morphos/goattrk2.info -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/readme.txt -------------------------------------------------------------------------------- /readme_resid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/readme_resid.txt -------------------------------------------------------------------------------- /readme_sdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/readme_sdl.txt -------------------------------------------------------------------------------- /src/altplayer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/altplayer.s -------------------------------------------------------------------------------- /src/asm/asmtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/asmtab.c -------------------------------------------------------------------------------- /src/asm/asmtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/asmtab.h -------------------------------------------------------------------------------- /src/asm/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/callback.h -------------------------------------------------------------------------------- /src/asm/chnkpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/chnkpool.c -------------------------------------------------------------------------------- /src/asm/chnkpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/chnkpool.h -------------------------------------------------------------------------------- /src/asm/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/expr.c -------------------------------------------------------------------------------- /src/asm/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/expr.h -------------------------------------------------------------------------------- /src/asm/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/int.h -------------------------------------------------------------------------------- /src/asm/lexyy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/lexyy.c -------------------------------------------------------------------------------- /src/asm/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/log.c -------------------------------------------------------------------------------- /src/asm/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/log.h -------------------------------------------------------------------------------- /src/asm/membuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/membuf.c -------------------------------------------------------------------------------- /src/asm/membuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/membuf.h -------------------------------------------------------------------------------- /src/asm/membufio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/membufio.c -------------------------------------------------------------------------------- /src/asm/membufio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/membufio.h -------------------------------------------------------------------------------- /src/asm/namedbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/namedbuf.c -------------------------------------------------------------------------------- /src/asm/namedbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/namedbuf.h -------------------------------------------------------------------------------- /src/asm/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/parse.c -------------------------------------------------------------------------------- /src/asm/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/parse.h -------------------------------------------------------------------------------- /src/asm/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/pc.c -------------------------------------------------------------------------------- /src/asm/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/pc.h -------------------------------------------------------------------------------- /src/asm/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/vec.c -------------------------------------------------------------------------------- /src/asm/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/asm/vec.h -------------------------------------------------------------------------------- /src/bcursor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bcursor.bin -------------------------------------------------------------------------------- /src/bcursor.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bcursor.hex -------------------------------------------------------------------------------- /src/bme/bme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme.c -------------------------------------------------------------------------------- /src/bme/bme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme.h -------------------------------------------------------------------------------- /src/bme/bme_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_cfg.h -------------------------------------------------------------------------------- /src/bme/bme_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_end.c -------------------------------------------------------------------------------- /src/bme/bme_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_end.h -------------------------------------------------------------------------------- /src/bme/bme_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_err.h -------------------------------------------------------------------------------- /src/bme/bme_gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_gfx.c -------------------------------------------------------------------------------- /src/bme/bme_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_gfx.h -------------------------------------------------------------------------------- /src/bme/bme_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_io.c -------------------------------------------------------------------------------- /src/bme/bme_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_io.h -------------------------------------------------------------------------------- /src/bme/bme_joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_joy.h -------------------------------------------------------------------------------- /src/bme/bme_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_kbd.c -------------------------------------------------------------------------------- /src/bme/bme_kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_kbd.h -------------------------------------------------------------------------------- /src/bme/bme_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_main.h -------------------------------------------------------------------------------- /src/bme/bme_mou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_mou.c -------------------------------------------------------------------------------- /src/bme/bme_mou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_mou.h -------------------------------------------------------------------------------- /src/bme/bme_snd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_snd.c -------------------------------------------------------------------------------- /src/bme/bme_snd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_snd.h -------------------------------------------------------------------------------- /src/bme/bme_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_win.c -------------------------------------------------------------------------------- /src/bme/bme_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/bme_win.h -------------------------------------------------------------------------------- /src/bme/dat2inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/dat2inc.c -------------------------------------------------------------------------------- /src/bme/dat2inc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/dat2inc.exe -------------------------------------------------------------------------------- /src/bme/datafile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/datafile.c -------------------------------------------------------------------------------- /src/bme/datafile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/datafile.exe -------------------------------------------------------------------------------- /src/bme/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/makefile -------------------------------------------------------------------------------- /src/bme/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/bme/makefile.win -------------------------------------------------------------------------------- /src/chargen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/chargen.bin -------------------------------------------------------------------------------- /src/cursor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/cursor.bin -------------------------------------------------------------------------------- /src/cursor.lbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/cursor.lbm -------------------------------------------------------------------------------- /src/cwsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/cwsid.h -------------------------------------------------------------------------------- /src/gcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gcommon.h -------------------------------------------------------------------------------- /src/gconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gconsole.c -------------------------------------------------------------------------------- /src/gconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gconsole.h -------------------------------------------------------------------------------- /src/gdisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gdisplay.c -------------------------------------------------------------------------------- /src/gdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gdisplay.h -------------------------------------------------------------------------------- /src/gfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gfile.c -------------------------------------------------------------------------------- /src/gfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gfile.h -------------------------------------------------------------------------------- /src/ghelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/ghelp.c -------------------------------------------------------------------------------- /src/ginstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/ginstr.c -------------------------------------------------------------------------------- /src/ginstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/ginstr.h -------------------------------------------------------------------------------- /src/goatdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goatdata.c -------------------------------------------------------------------------------- /src/goattrk2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.bmp -------------------------------------------------------------------------------- /src/goattrk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.c -------------------------------------------------------------------------------- /src/goattrk2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.dat -------------------------------------------------------------------------------- /src/goattrk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.h -------------------------------------------------------------------------------- /src/goattrk2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.ico -------------------------------------------------------------------------------- /src/goattrk2.rc: -------------------------------------------------------------------------------- 1 | 6581 ICON DISCARDABLE "goattrk2.ico" 2 | -------------------------------------------------------------------------------- /src/goattrk2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.res -------------------------------------------------------------------------------- /src/goattrk2.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/goattrk2.seq -------------------------------------------------------------------------------- /src/gorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gorder.c -------------------------------------------------------------------------------- /src/gorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gorder.h -------------------------------------------------------------------------------- /src/gpattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gpattern.c -------------------------------------------------------------------------------- /src/gpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gpattern.h -------------------------------------------------------------------------------- /src/gplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gplay.c -------------------------------------------------------------------------------- /src/gplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gplay.h -------------------------------------------------------------------------------- /src/greloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/greloc.c -------------------------------------------------------------------------------- /src/greloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/greloc.h -------------------------------------------------------------------------------- /src/gsid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsid.cpp -------------------------------------------------------------------------------- /src/gsid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsid.h -------------------------------------------------------------------------------- /src/gsong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsong.c -------------------------------------------------------------------------------- /src/gsong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsong.h -------------------------------------------------------------------------------- /src/gsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsound.c -------------------------------------------------------------------------------- /src/gsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gsound.h -------------------------------------------------------------------------------- /src/gt2reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gt2reloc.c -------------------------------------------------------------------------------- /src/gtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gtable.c -------------------------------------------------------------------------------- /src/gtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gtable.h -------------------------------------------------------------------------------- /src/gundo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gundo.c -------------------------------------------------------------------------------- /src/gundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/gundo.h -------------------------------------------------------------------------------- /src/ins2snd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/ins2snd2.c -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/makefile -------------------------------------------------------------------------------- /src/makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/makefile.common -------------------------------------------------------------------------------- /src/makefile.mos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/makefile.mos -------------------------------------------------------------------------------- /src/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/makefile.win -------------------------------------------------------------------------------- /src/makefile.xmingw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/makefile.xmingw32 -------------------------------------------------------------------------------- /src/mod2sng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/mod2sng.c -------------------------------------------------------------------------------- /src/palette.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/palette.bin -------------------------------------------------------------------------------- /src/palette.lbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/palette.lbm -------------------------------------------------------------------------------- /src/player.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/player.s -------------------------------------------------------------------------------- /src/resid-fp/envelopefp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/envelopefp.cpp -------------------------------------------------------------------------------- /src/resid-fp/envelopefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/envelopefp.h -------------------------------------------------------------------------------- /src/resid-fp/extfiltfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/extfiltfp.cpp -------------------------------------------------------------------------------- /src/resid-fp/extfiltfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/extfiltfp.h -------------------------------------------------------------------------------- /src/resid-fp/filterfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/filterfp.cpp -------------------------------------------------------------------------------- /src/resid-fp/filterfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/filterfp.h -------------------------------------------------------------------------------- /src/resid-fp/potfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/potfp.cpp -------------------------------------------------------------------------------- /src/resid-fp/potfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/potfp.h -------------------------------------------------------------------------------- /src/resid-fp/siddefsfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/siddefsfp.h -------------------------------------------------------------------------------- /src/resid-fp/sidfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/sidfp.cpp -------------------------------------------------------------------------------- /src/resid-fp/sidfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/sidfp.h -------------------------------------------------------------------------------- /src/resid-fp/versionfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/versionfp.cpp -------------------------------------------------------------------------------- /src/resid-fp/voicefp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/voicefp.cpp -------------------------------------------------------------------------------- /src/resid-fp/voicefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/voicefp.h -------------------------------------------------------------------------------- /src/resid-fp/wavefp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/wavefp.cpp -------------------------------------------------------------------------------- /src/resid-fp/wavefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid-fp/wavefp.h -------------------------------------------------------------------------------- /src/resid/envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/envelope.cpp -------------------------------------------------------------------------------- /src/resid/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/envelope.h -------------------------------------------------------------------------------- /src/resid/extfilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/extfilt.cpp -------------------------------------------------------------------------------- /src/resid/extfilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/extfilt.h -------------------------------------------------------------------------------- /src/resid/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/filter.cpp -------------------------------------------------------------------------------- /src/resid/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/filter.h -------------------------------------------------------------------------------- /src/resid/pot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/pot.cpp -------------------------------------------------------------------------------- /src/resid/pot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/pot.h -------------------------------------------------------------------------------- /src/resid/sid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/sid.cpp -------------------------------------------------------------------------------- /src/resid/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/sid.h -------------------------------------------------------------------------------- /src/resid/siddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/siddefs.h -------------------------------------------------------------------------------- /src/resid/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/spline.h -------------------------------------------------------------------------------- /src/resid/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/version.cpp -------------------------------------------------------------------------------- /src/resid/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/voice.cpp -------------------------------------------------------------------------------- /src/resid/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/voice.h -------------------------------------------------------------------------------- /src/resid/wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave.cpp -------------------------------------------------------------------------------- /src/resid/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave.h -------------------------------------------------------------------------------- /src/resid/wave6581_PST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave6581_PST.cpp -------------------------------------------------------------------------------- /src/resid/wave6581_PS_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave6581_PS_.cpp -------------------------------------------------------------------------------- /src/resid/wave6581_P_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave6581_P_T.cpp -------------------------------------------------------------------------------- /src/resid/wave6581__ST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave6581__ST.cpp -------------------------------------------------------------------------------- /src/resid/wave8580_PST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave8580_PST.cpp -------------------------------------------------------------------------------- /src/resid/wave8580_PS_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave8580_PS_.cpp -------------------------------------------------------------------------------- /src/resid/wave8580_P_T.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave8580_P_T.cpp -------------------------------------------------------------------------------- /src/resid/wave8580__ST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/resid/wave8580__ST.cpp -------------------------------------------------------------------------------- /src/sngspli2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelricci/goattracker2/HEAD/src/sngspli2.c --------------------------------------------------------------------------------