├── .gitignore ├── Makefile-C ├── Makefile-i386 ├── Makefile-mingw ├── README ├── TODO ├── as68k ├── .gitignore ├── Makefile ├── as68k.c ├── as68k.h ├── dict.c ├── dict.h ├── hcalls.h ├── m68000.h ├── output.c ├── output.h ├── output_c.c ├── output_i386.c └── test.c ├── benchmarks.txt ├── cursor.png ├── dis68k ├── Makefile ├── dis68k.c └── gen_frontier.sh ├── host.c ├── host.h ├── joystick.ini ├── m68000.h ├── notes.txt └── src ├── Makefile.dep ├── audio.c ├── audio.h ├── gl.c ├── hostcall.c ├── hostcall.h ├── input.c ├── input.h ├── joystick.c ├── joystick.h ├── keymap.c ├── keymap.h ├── main.c ├── main.h ├── screen.h ├── shortcut.c ├── shortcut.h └── soft.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | frontier 3 | fe2.s.* 4 | fixups.h 5 | gen 6 | -------------------------------------------------------------------------------- /Makefile-C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/Makefile-C -------------------------------------------------------------------------------- /Makefile-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/Makefile-i386 -------------------------------------------------------------------------------- /Makefile-mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/Makefile-mingw -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/TODO -------------------------------------------------------------------------------- /as68k/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | as68k 3 | -------------------------------------------------------------------------------- /as68k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/Makefile -------------------------------------------------------------------------------- /as68k/as68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/as68k.c -------------------------------------------------------------------------------- /as68k/as68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/as68k.h -------------------------------------------------------------------------------- /as68k/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/dict.c -------------------------------------------------------------------------------- /as68k/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/dict.h -------------------------------------------------------------------------------- /as68k/hcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/hcalls.h -------------------------------------------------------------------------------- /as68k/m68000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/m68000.h -------------------------------------------------------------------------------- /as68k/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/output.c -------------------------------------------------------------------------------- /as68k/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/output.h -------------------------------------------------------------------------------- /as68k/output_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/output_c.c -------------------------------------------------------------------------------- /as68k/output_i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/output_i386.c -------------------------------------------------------------------------------- /as68k/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/as68k/test.c -------------------------------------------------------------------------------- /benchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/benchmarks.txt -------------------------------------------------------------------------------- /cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/cursor.png -------------------------------------------------------------------------------- /dis68k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/dis68k/Makefile -------------------------------------------------------------------------------- /dis68k/dis68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/dis68k/dis68k.c -------------------------------------------------------------------------------- /dis68k/gen_frontier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/dis68k/gen_frontier.sh -------------------------------------------------------------------------------- /host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/host.c -------------------------------------------------------------------------------- /host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/host.h -------------------------------------------------------------------------------- /joystick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/joystick.ini -------------------------------------------------------------------------------- /m68000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/m68000.h -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/notes.txt -------------------------------------------------------------------------------- /src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/Makefile.dep -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/gl.c -------------------------------------------------------------------------------- /src/hostcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/hostcall.c -------------------------------------------------------------------------------- /src/hostcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/hostcall.h -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/input.c -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/input.h -------------------------------------------------------------------------------- /src/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/joystick.c -------------------------------------------------------------------------------- /src/joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/joystick.h -------------------------------------------------------------------------------- /src/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/keymap.c -------------------------------------------------------------------------------- /src/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/keymap.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/main.h -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/shortcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/shortcut.c -------------------------------------------------------------------------------- /src/shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/shortcut.h -------------------------------------------------------------------------------- /src/soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcercuei/glfrontier/HEAD/src/soft.c --------------------------------------------------------------------------------