├── .gitignore ├── README.rst ├── doc └── instructions.txt ├── examples ├── TicTacToe │ ├── C++ │ │ ├── 32X │ │ │ ├── 32x.h │ │ │ ├── Makefile │ │ │ ├── crtstuff.c │ │ │ ├── font.c │ │ │ ├── hw_32x.c │ │ │ ├── hw_32x.h │ │ │ ├── m68k_crt0.s │ │ │ ├── m68k_crt1.s │ │ │ ├── main.cpp │ │ │ └── sh2_crt0.s │ │ └── MD │ │ │ ├── Makefile │ │ │ ├── crt0.s │ │ │ ├── crtstuff.c │ │ │ ├── font.c │ │ │ ├── hw_md.h │ │ │ ├── hw_md.s │ │ │ └── main.cpp │ └── C │ │ ├── 32X │ │ ├── 32x.h │ │ ├── Makefile │ │ ├── font.c │ │ ├── hw_32x.c │ │ ├── hw_32x.h │ │ ├── m68k_crt0.s │ │ ├── m68k_crt1.s │ │ ├── main.c │ │ └── sh2_crt0.s │ │ └── MD │ │ ├── Makefile │ │ ├── crt0.s │ │ ├── font.c │ │ ├── hw_md.h │ │ ├── hw_md.s │ │ └── main.c └── Yeti3D-GPL │ ├── GNU.TXT │ ├── editor │ ├── ToolBox.cpp │ ├── ToolBox.h │ ├── UnitMain.cpp │ ├── UnitMain.dfm │ ├── UnitMain.h │ ├── UnitPreview.cpp │ ├── UnitPreview.dfm │ ├── UnitPreview.h │ ├── YetiEditor.bpr │ ├── YetiEditor.cpp │ ├── default.y3d │ ├── readme.txt │ ├── test0.y3d │ ├── test1.y3d │ ├── test2.y3d │ └── test3.y3d │ ├── platform │ ├── 32X │ │ ├── 32x.h │ │ ├── Makefile │ │ ├── files-psyg.s │ │ ├── files.h │ │ ├── font.c │ │ ├── hw_32x.c │ │ ├── hw_32x.h │ │ ├── m68k_crt0.s │ │ ├── m68k_crt1.s │ │ ├── main.c │ │ ├── module.c │ │ ├── module.h │ │ ├── music │ │ │ ├── SOTBeast2_2.MOD │ │ │ ├── SOTBeast2_4.MOD │ │ │ └── SOTBeast2_5.MOD │ │ ├── sh2_crt0.s │ │ ├── sound.h │ │ ├── sound.s │ │ └── sounds │ │ │ ├── en-atk.raw │ │ │ ├── en-dth.raw │ │ │ ├── en-near.raw │ │ │ ├── en-pain.raw │ │ │ ├── pl-dth.raw │ │ │ ├── pl-oof.raw │ │ │ ├── pl-pain.raw │ │ │ └── pl-sht.raw │ ├── ddraw │ │ ├── main.cpp │ │ ├── yeti3d.lk1 │ │ ├── yeti3d.mk │ │ ├── yeti3d.mk1 │ │ ├── yeti3d.tgt │ │ └── yeti3d.wpj │ ├── gba │ │ ├── gba.h │ │ ├── main.c │ │ └── make.bat │ ├── opengl │ │ ├── main.c │ │ ├── yeti3d.lk1 │ │ ├── yeti3d.mk │ │ ├── yeti3d.mk1 │ │ ├── yeti3d.tgt │ │ └── yeti3d.wpj │ └── win32 │ │ ├── yeti3dwin32.c │ │ └── yeti3dwin32.h │ ├── readme.txt │ └── src │ ├── data.c │ ├── data.h │ ├── draw.c │ ├── extra.c │ ├── extra.h │ ├── font.c │ ├── font.h │ ├── game.c │ ├── game.h │ ├── maps.c │ ├── maps │ └── e1m1.c │ ├── model.c │ ├── model.h │ ├── sprites.c │ ├── sprites.h │ ├── viewports.h │ ├── yeti.c │ └── yeti.h ├── ldscripts ├── makefile-gen ├── mars-myth-sdram.ld ├── mars.ld ├── md-myth-psram.ld ├── md-myth-wram.ld ├── md-split-ram.ld └── md.ld ├── sourceme.sh └── toolchain.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | download 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/README.rst -------------------------------------------------------------------------------- /doc/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/doc/instructions.txt -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/32x.h -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/Makefile -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/crtstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/crtstuff.c -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/font.c -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/hw_32x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/hw_32x.c -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/hw_32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/hw_32x.h -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/m68k_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/m68k_crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/m68k_crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/m68k_crt1.s -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/main.cpp -------------------------------------------------------------------------------- /examples/TicTacToe/C++/32X/sh2_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/32X/sh2_crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/Makefile -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/crtstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/crtstuff.c -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/font.c -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/hw_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/hw_md.h -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/hw_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/hw_md.s -------------------------------------------------------------------------------- /examples/TicTacToe/C++/MD/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C++/MD/main.cpp -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/32x.h -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/Makefile -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/font.c -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/hw_32x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/hw_32x.c -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/hw_32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/hw_32x.h -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/m68k_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/m68k_crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/m68k_crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/m68k_crt1.s -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/main.c -------------------------------------------------------------------------------- /examples/TicTacToe/C/32X/sh2_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/32X/sh2_crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/Makefile -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/crt0.s -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/font.c -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/hw_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/hw_md.h -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/hw_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/hw_md.s -------------------------------------------------------------------------------- /examples/TicTacToe/C/MD/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/TicTacToe/C/MD/main.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/GNU.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/GNU.TXT -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/ToolBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/ToolBox.cpp -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/ToolBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/ToolBox.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitMain.cpp -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitMain.dfm -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitMain.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitPreview.cpp -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitPreview.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitPreview.dfm -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/UnitPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/UnitPreview.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/YetiEditor.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/YetiEditor.bpr -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/YetiEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/YetiEditor.cpp -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/default.y3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/default.y3d -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/readme.txt -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/test0.y3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/test0.y3d -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/test1.y3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/test1.y3d -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/test2.y3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/test2.y3d -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/editor/test3.y3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/editor/test3.y3d -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/32x.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/Makefile -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/files-psyg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/files-psyg.s -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/files.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/font.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/hw_32x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/hw_32x.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/hw_32x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/hw_32x.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/m68k_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/m68k_crt0.s -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/m68k_crt1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/m68k_crt1.s -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/main.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/module.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/module.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_2.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_2.MOD -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_4.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_4.MOD -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_5.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/music/SOTBeast2_5.MOD -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sh2_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sh2_crt0.s -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sound.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sound.s -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/en-atk.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/en-atk.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/en-dth.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/en-dth.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/en-near.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/en-near.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/en-pain.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/en-pain.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/pl-dth.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/pl-dth.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/pl-oof.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/pl-oof.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/pl-pain.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/pl-pain.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/32X/sounds/pl-sht.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/32X/sounds/pl-sht.raw -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/main.cpp -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/yeti3d.lk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/yeti3d.lk1 -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/yeti3d.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/yeti3d.mk -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/yeti3d.mk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/yeti3d.mk1 -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/yeti3d.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/yeti3d.tgt -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/ddraw/yeti3d.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/ddraw/yeti3d.wpj -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/gba/gba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/gba/gba.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/gba/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/gba/main.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/gba/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/gba/make.bat -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/main.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/yeti3d.lk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/yeti3d.lk1 -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/yeti3d.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/yeti3d.mk -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/yeti3d.mk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/yeti3d.mk1 -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/yeti3d.tgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/yeti3d.tgt -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/opengl/yeti3d.wpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/opengl/yeti3d.wpj -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/win32/yeti3dwin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/win32/yeti3dwin32.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/platform/win32/yeti3dwin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/platform/win32/yeti3dwin32.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/readme.txt -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/data.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/data.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/draw.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/extra.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/extra.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/font.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/font.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/game.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/game.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/maps.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/maps/e1m1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/maps/e1m1.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/model.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/model.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/sprites.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/sprites.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/viewports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/viewports.h -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/yeti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/yeti.c -------------------------------------------------------------------------------- /examples/Yeti3D-GPL/src/yeti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/examples/Yeti3D-GPL/src/yeti.h -------------------------------------------------------------------------------- /ldscripts/makefile-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/makefile-gen -------------------------------------------------------------------------------- /ldscripts/mars-myth-sdram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/mars-myth-sdram.ld -------------------------------------------------------------------------------- /ldscripts/mars.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/mars.ld -------------------------------------------------------------------------------- /ldscripts/md-myth-psram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/md-myth-psram.ld -------------------------------------------------------------------------------- /ldscripts/md-myth-wram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/md-myth-wram.ld -------------------------------------------------------------------------------- /ldscripts/md-split-ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/md-split-ram.ld -------------------------------------------------------------------------------- /ldscripts/md.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/ldscripts/md.ld -------------------------------------------------------------------------------- /sourceme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/sourceme.sh -------------------------------------------------------------------------------- /toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noname22/megadrive-gcc/HEAD/toolchain.sh --------------------------------------------------------------------------------