├── .gitignore ├── Makefile ├── README.md ├── doc ├── changelog.md ├── coding.md ├── files.md ├── funcs.md ├── issues.md ├── memmap.xlsx └── outline.md ├── src ├── audio.c ├── audio.h ├── cam.c ├── cam.h ├── common.h ├── ext │ ├── disgool.c │ ├── disgool.h │ ├── gui.c │ ├── gui.h │ ├── lib │ │ ├── cimgui │ │ │ ├── Makefile │ │ │ ├── cimgui.cpp │ │ │ ├── cimgui.h │ │ │ ├── cimgui_impl.h │ │ │ └── imgui │ │ │ │ ├── .editorconfig │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── backends │ │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ │ ├── imgui_impl_opengl2.h │ │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ │ ├── imgui_impl_opengl3.h │ │ │ │ ├── imgui_impl_opengl3_loader.h │ │ │ │ ├── imgui_impl_sdl.cpp │ │ │ │ ├── imgui_impl_sdl.h │ │ │ │ ├── imgui_impl_sdlrenderer.cpp │ │ │ │ └── imgui_impl_sdlrenderer.h │ │ │ │ ├── imconfig.h │ │ │ │ ├── imgui.cpp │ │ │ │ ├── imgui.h │ │ │ │ ├── imgui_demo.cpp │ │ │ │ ├── imgui_draw.cpp │ │ │ │ ├── imgui_internal.h │ │ │ │ ├── imgui_tables.cpp │ │ │ │ ├── imgui_widgets.cpp │ │ │ │ ├── imstb_rectpack.h │ │ │ │ ├── imstb_textedit.h │ │ │ │ └── imstb_truetype.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── refl.c │ │ ├── refl.h │ │ └── refl.md │ ├── refl.c │ └── refl.h ├── formats │ ├── cvtx.h │ ├── gool.h │ ├── imag.h │ ├── inst.h │ ├── ipal.h │ ├── mdat.h │ ├── midi.h │ ├── pbak.h │ ├── slst.h │ ├── svtx.h │ ├── tgeo.h │ ├── wgeo.h │ └── zdat.h ├── geom.h ├── gfx.c ├── gfx.h ├── globals.h ├── gool.c ├── gool.h ├── level.c ├── level.h ├── main.c ├── math.c ├── math.h ├── midi.c ├── midi.h ├── misc.c ├── misc.h ├── ns.c ├── ns.h ├── pad.c ├── pad.h ├── pbak.c ├── pbak.h ├── pc │ ├── gfx │ │ ├── gl.c │ │ ├── gl.h │ │ ├── pcgfx.h │ │ ├── soft.c │ │ ├── soft.h │ │ ├── tex.c │ │ └── tex.h │ ├── init.c │ ├── init.h │ ├── math.c │ ├── math.h │ ├── pad.c │ ├── pad.h │ ├── sound │ │ ├── audio.c │ │ ├── audio.h │ │ ├── formats │ │ │ ├── psx.h │ │ │ ├── sf2.h │ │ │ └── smf.h │ │ ├── midi.c │ │ ├── midi.h │ │ ├── util.c │ │ └── util.h │ ├── time.c │ └── time.h ├── psx │ ├── card.c │ ├── card.h │ ├── cdr.c │ ├── cdr.h │ ├── gpu.c │ ├── gpu.h │ ├── init.c │ ├── r3000a.c │ ├── r3000a.h │ └── r3000a.s ├── slst.c ├── slst.h ├── solid.c ├── solid.h ├── title.c ├── title.h └── util │ ├── list.c │ ├── list.h │ ├── tree.c │ └── tree.h └── streams └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # compile output 2 | *.o 3 | c1 4 | 5 | # user files 6 | streams/* 7 | imgui.ini 8 | !README.MD 9 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/README.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/coding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/coding.md -------------------------------------------------------------------------------- /doc/files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/files.md -------------------------------------------------------------------------------- /doc/funcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/funcs.md -------------------------------------------------------------------------------- /doc/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/issues.md -------------------------------------------------------------------------------- /doc/memmap.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/memmap.xlsx -------------------------------------------------------------------------------- /doc/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/doc/outline.md -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/cam.c -------------------------------------------------------------------------------- /src/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/cam.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/common.h -------------------------------------------------------------------------------- /src/ext/disgool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/disgool.c -------------------------------------------------------------------------------- /src/ext/disgool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/disgool.h -------------------------------------------------------------------------------- /src/ext/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/gui.c -------------------------------------------------------------------------------- /src/ext/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/gui.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/Makefile -------------------------------------------------------------------------------- /src/ext/lib/cimgui/cimgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/cimgui.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/cimgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/cimgui.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/cimgui_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/cimgui_impl.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/.editorconfig -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/LICENSE.txt -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_sdl.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_sdl.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imconfig.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui_internal.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /src/ext/lib/cimgui/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/cimgui/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /src/ext/lib/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/gui.c -------------------------------------------------------------------------------- /src/ext/lib/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/gui.h -------------------------------------------------------------------------------- /src/ext/lib/refl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/refl.c -------------------------------------------------------------------------------- /src/ext/lib/refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/refl.h -------------------------------------------------------------------------------- /src/ext/lib/refl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/lib/refl.md -------------------------------------------------------------------------------- /src/ext/refl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/refl.c -------------------------------------------------------------------------------- /src/ext/refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ext/refl.h -------------------------------------------------------------------------------- /src/formats/cvtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/cvtx.h -------------------------------------------------------------------------------- /src/formats/gool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/gool.h -------------------------------------------------------------------------------- /src/formats/imag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/imag.h -------------------------------------------------------------------------------- /src/formats/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/inst.h -------------------------------------------------------------------------------- /src/formats/ipal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/ipal.h -------------------------------------------------------------------------------- /src/formats/mdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/mdat.h -------------------------------------------------------------------------------- /src/formats/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/midi.h -------------------------------------------------------------------------------- /src/formats/pbak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/pbak.h -------------------------------------------------------------------------------- /src/formats/slst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/slst.h -------------------------------------------------------------------------------- /src/formats/svtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/svtx.h -------------------------------------------------------------------------------- /src/formats/tgeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/tgeo.h -------------------------------------------------------------------------------- /src/formats/wgeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/wgeo.h -------------------------------------------------------------------------------- /src/formats/zdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/formats/zdat.h -------------------------------------------------------------------------------- /src/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/geom.h -------------------------------------------------------------------------------- /src/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/gfx.c -------------------------------------------------------------------------------- /src/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/gfx.h -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/gool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/gool.c -------------------------------------------------------------------------------- /src/gool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/gool.h -------------------------------------------------------------------------------- /src/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/level.c -------------------------------------------------------------------------------- /src/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/level.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/main.c -------------------------------------------------------------------------------- /src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/math.c -------------------------------------------------------------------------------- /src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/math.h -------------------------------------------------------------------------------- /src/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/midi.c -------------------------------------------------------------------------------- /src/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/midi.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ns.c -------------------------------------------------------------------------------- /src/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/ns.h -------------------------------------------------------------------------------- /src/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pad.c -------------------------------------------------------------------------------- /src/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pad.h -------------------------------------------------------------------------------- /src/pbak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pbak.c -------------------------------------------------------------------------------- /src/pbak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pbak.h -------------------------------------------------------------------------------- /src/pc/gfx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/gl.c -------------------------------------------------------------------------------- /src/pc/gfx/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/gl.h -------------------------------------------------------------------------------- /src/pc/gfx/pcgfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/pcgfx.h -------------------------------------------------------------------------------- /src/pc/gfx/soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/soft.c -------------------------------------------------------------------------------- /src/pc/gfx/soft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/soft.h -------------------------------------------------------------------------------- /src/pc/gfx/tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/tex.c -------------------------------------------------------------------------------- /src/pc/gfx/tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/gfx/tex.h -------------------------------------------------------------------------------- /src/pc/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/init.c -------------------------------------------------------------------------------- /src/pc/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/init.h -------------------------------------------------------------------------------- /src/pc/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/math.c -------------------------------------------------------------------------------- /src/pc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/math.h -------------------------------------------------------------------------------- /src/pc/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/pad.c -------------------------------------------------------------------------------- /src/pc/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/pad.h -------------------------------------------------------------------------------- /src/pc/sound/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/audio.c -------------------------------------------------------------------------------- /src/pc/sound/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/audio.h -------------------------------------------------------------------------------- /src/pc/sound/formats/psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/formats/psx.h -------------------------------------------------------------------------------- /src/pc/sound/formats/sf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/formats/sf2.h -------------------------------------------------------------------------------- /src/pc/sound/formats/smf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/formats/smf.h -------------------------------------------------------------------------------- /src/pc/sound/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/midi.c -------------------------------------------------------------------------------- /src/pc/sound/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/midi.h -------------------------------------------------------------------------------- /src/pc/sound/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/util.c -------------------------------------------------------------------------------- /src/pc/sound/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/sound/util.h -------------------------------------------------------------------------------- /src/pc/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/time.c -------------------------------------------------------------------------------- /src/pc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/pc/time.h -------------------------------------------------------------------------------- /src/psx/card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/card.c -------------------------------------------------------------------------------- /src/psx/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/card.h -------------------------------------------------------------------------------- /src/psx/cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/cdr.c -------------------------------------------------------------------------------- /src/psx/cdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/cdr.h -------------------------------------------------------------------------------- /src/psx/gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/gpu.c -------------------------------------------------------------------------------- /src/psx/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/gpu.h -------------------------------------------------------------------------------- /src/psx/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/init.c -------------------------------------------------------------------------------- /src/psx/r3000a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/r3000a.c -------------------------------------------------------------------------------- /src/psx/r3000a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/r3000a.h -------------------------------------------------------------------------------- /src/psx/r3000a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/psx/r3000a.s -------------------------------------------------------------------------------- /src/slst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/slst.c -------------------------------------------------------------------------------- /src/slst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/slst.h -------------------------------------------------------------------------------- /src/solid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/solid.c -------------------------------------------------------------------------------- /src/solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/solid.h -------------------------------------------------------------------------------- /src/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/title.c -------------------------------------------------------------------------------- /src/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/title.h -------------------------------------------------------------------------------- /src/util/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/util/list.c -------------------------------------------------------------------------------- /src/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/util/list.h -------------------------------------------------------------------------------- /src/util/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/util/tree.c -------------------------------------------------------------------------------- /src/util/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/src/util/tree.h -------------------------------------------------------------------------------- /streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wurlyfox/c1/HEAD/streams/README.md --------------------------------------------------------------------------------