├── .gitignore ├── Assets ├── DIR.txt ├── p1crosshair.bmp └── p2crosshair.bmp ├── Config ├── Games.xml ├── Music.xml └── Supermodel.ini ├── Docs ├── Images │ ├── Daytona2_1.gif │ ├── Daytona2_2.gif │ ├── FVipers2.gif │ ├── LAMachin.gif │ ├── Real3D_Logo.png │ ├── Scud.gif │ └── StarWars.gif ├── LICENSE.txt ├── README.md └── README.txt ├── Makefiles ├── Makefile.OSX ├── Makefile.UNIX ├── Makefile.Win32 ├── Options.inc └── Rules.inc ├── README.md ├── Scripts ├── changelog.sh └── supermodel_build_bot.py ├── Src ├── BlockFile.cpp ├── BlockFile.h ├── CPU │ ├── 68K │ │ ├── 68K.cpp │ │ ├── 68K.h │ │ ├── Musashi │ │ │ ├── m68k.h │ │ │ ├── m68k_in.c │ │ │ ├── m68kconf.h │ │ │ ├── m68kcpu.c │ │ │ ├── m68kcpu.h │ │ │ ├── m68kctx.h │ │ │ ├── m68kdasm.c │ │ │ └── m68kmake.c │ │ └── Turbo68K │ │ │ ├── Make68K.c │ │ │ ├── README.TXT │ │ │ └── Turbo68K.h │ ├── Bus.h │ ├── PowerPC │ │ ├── PPCDisasm.cpp │ │ ├── PPCDisasm.h │ │ ├── ppc.cpp │ │ ├── ppc.h │ │ ├── ppc603.c │ │ ├── ppc_ops.c │ │ └── ppc_ops.h │ └── Z80 │ │ ├── Z80.cpp │ │ └── Z80.h ├── Debugger │ ├── AddressTable.cpp │ ├── AddressTable.h │ ├── Breakpoint.cpp │ ├── Breakpoint.h │ ├── CPU │ │ ├── 68KDebug.cpp │ │ ├── 68KDebug.h │ │ ├── Musashi68KDebug.cpp │ │ ├── Musashi68KDebug.h │ │ ├── PPCDebug.cpp │ │ ├── PPCDebug.h │ │ ├── Turbo68KDebug.cpp │ │ ├── Turbo68KDebug.h │ │ ├── Z80Debug.cpp │ │ └── Z80Debug.h │ ├── CPUDebug.cpp │ ├── CPUDebug.h │ ├── CodeAnalyser.cpp │ ├── CodeAnalyser.h │ ├── ConsoleDebugger.cpp │ ├── ConsoleDebugger.h │ ├── Debugger.cpp │ ├── Debugger.h │ ├── DebuggerIO.cpp │ ├── DebuggerIO.h │ ├── Exception.cpp │ ├── Exception.h │ ├── Interrupt.cpp │ ├── Interrupt.h │ ├── Label.cpp │ ├── Label.h │ ├── ReadMe.txt │ ├── Register.cpp │ ├── Register.h │ ├── SupermodelDebugger.cpp │ ├── SupermodelDebugger.h │ ├── Watch.cpp │ └── Watch.h ├── Game.h ├── GameLoader.cpp ├── GameLoader.h ├── Graphics │ ├── FBO.cpp │ ├── FBO.h │ ├── IRender3D.h │ ├── Legacy3D │ │ ├── Error.cpp │ │ ├── Legacy3D.cpp │ │ ├── Legacy3D.h │ │ ├── Models.cpp │ │ ├── Shaders │ │ │ ├── DIR.txt │ │ │ ├── Fragment.glsl │ │ │ ├── Fragment2D.glsl │ │ │ ├── Fragment_Flat.glsl │ │ │ ├── Fragment_MultiSheet.glsl │ │ │ ├── Fragment_NoSpotlight.glsl │ │ │ ├── Vertex.glsl │ │ │ └── Vertex2D.glsl │ │ ├── Shaders3D.h │ │ ├── TextureRefs.cpp │ │ └── TextureRefs.h │ ├── New3D │ │ ├── GLSLShader.cpp │ │ ├── GLSLShader.h │ │ ├── Mat4.cpp │ │ ├── Mat4.h │ │ ├── Model.cpp │ │ ├── Model.h │ │ ├── New3D.cpp │ │ ├── New3D.h │ │ ├── Plane.h │ │ ├── PolyHeader.cpp │ │ ├── PolyHeader.h │ │ ├── R3DData.h │ │ ├── R3DFloat.cpp │ │ ├── R3DFloat.h │ │ ├── R3DFrameBuffers.cpp │ │ ├── R3DFrameBuffers.h │ │ ├── R3DScrollFog.cpp │ │ ├── R3DScrollFog.h │ │ ├── R3DShader.cpp │ │ ├── R3DShader.h │ │ ├── R3DShaderCommon.h │ │ ├── R3DShaderQuads.h │ │ ├── R3DShaderTriangles.h │ │ ├── TextureBank.cpp │ │ ├── TextureBank.h │ │ ├── VBO.cpp │ │ ├── VBO.h │ │ ├── Vec.cpp │ │ └── Vec.h │ ├── Render2D.cpp │ ├── Render2D.h │ ├── Shader.cpp │ ├── Shader.h │ ├── Shaders2D.h │ ├── SuperAA.cpp │ └── SuperAA.h ├── Inputs │ ├── Input.cpp │ ├── Input.h │ ├── InputSource.cpp │ ├── InputSource.h │ ├── InputSystem.cpp │ ├── InputSystem.h │ ├── InputTypes.cpp │ ├── InputTypes.h │ ├── Inputs.cpp │ ├── Inputs.h │ ├── MultiInputSource.cpp │ └── MultiInputSource.h ├── Model3 │ ├── 53C810.cpp │ ├── 53C810.h │ ├── 53C810Disasm.cpp │ ├── 93C46.cpp │ ├── 93C46.h │ ├── Crypto.cpp │ ├── Crypto.h │ ├── DSB.cpp │ ├── DSB.h │ ├── DriveBoard │ │ ├── BillBoard.cpp │ │ ├── BillBoard.h │ │ ├── DriveBoard.cpp │ │ ├── DriveBoard.h │ │ ├── JoystickBoard.cpp │ │ ├── JoystickBoard.h │ │ ├── SkiBoard.cpp │ │ ├── SkiBoard.h │ │ ├── WheelBoard.cpp │ │ └── WheelBoard.h │ ├── IEmulator.h │ ├── IRQ.cpp │ ├── IRQ.h │ ├── JTAG.cpp │ ├── JTAG.h │ ├── MPC10x.cpp │ ├── MPC10x.h │ ├── Model3.cpp │ ├── Model3.h │ ├── Model3GraphicsState.h │ ├── PCI.cpp │ ├── PCI.h │ ├── RTC72421.cpp │ ├── RTC72421.h │ ├── Real3D.cpp │ ├── Real3D.h │ ├── SoundBoard.cpp │ ├── SoundBoard.h │ ├── TileGen.cpp │ ├── TileGen.h │ └── TileGenBuffer.h ├── Network │ ├── INetBoard.h │ ├── NetBoard.cpp │ ├── NetBoard.h │ ├── SimNetBoard.cpp │ ├── SimNetBoard.h │ ├── TCPReceive.cpp │ ├── TCPReceive.h │ ├── TCPSend.cpp │ ├── TCPSend.h │ ├── TCPSendAsync.cpp │ └── TCPSendAsync.h ├── OSD │ ├── Audio.h │ ├── DefaultConfigFile.h │ ├── FileSystemPath.h │ ├── Logger.cpp │ ├── Logger.h │ ├── OSX │ │ └── FileSystemPath.cpp │ ├── Outputs.cpp │ ├── Outputs.h │ ├── SDL │ │ ├── Audio.cpp │ │ ├── Crosshair.cpp │ │ ├── Crosshair.h │ │ ├── Gui.cpp │ │ ├── Gui.h │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── PolyAnalysis.h │ │ ├── SDLIncludes.h │ │ ├── SDLInputSystem.cpp │ │ ├── SDLInputSystem.h │ │ ├── SDLMain_tmpl.h │ │ ├── SDLMain_tmpl.m │ │ ├── Thread.cpp │ │ └── Types.h │ ├── Thread.h │ ├── Unix │ │ └── FileSystemPath.cpp │ ├── Video.h │ └── Windows │ │ ├── DirectInputSystem.cpp │ │ ├── DirectInputSystem.h │ │ ├── FileSystemPath.cpp │ │ ├── SupermodelManifest.xml │ │ ├── SupermodelResources.rc │ │ ├── WinOutputs.cpp │ │ └── WinOutputs.h ├── Pkgs │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── crypt.h │ ├── glew.c │ ├── imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_opengl3_loader.h │ │ ├── imgui_impl_sdl2.cpp │ │ ├── imgui_impl_sdl2.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── ioapi.c │ ├── ioapi.h │ ├── minimp3.h │ ├── tinyxml2.cpp │ ├── tinyxml2.h │ ├── unzip.c │ ├── unzip.h │ └── wglew.h ├── ROMSet.cpp ├── ROMSet.h ├── Sound │ ├── MPEG │ │ ├── MpegAudio.cpp │ │ └── MpegAudio.h │ ├── SCSP.cpp │ ├── SCSP.h │ ├── SCSPDSP.cpp │ ├── SCSPDSP.h │ └── SCSPLFO.cpp ├── Supermodel.h ├── Util │ ├── BMPFile.h │ ├── BitCast.h │ ├── ByteSwap.cpp │ ├── ByteSwap.h │ ├── ConfigBuilders.cpp │ ├── ConfigBuilders.h │ ├── Format.cpp │ ├── Format.h │ ├── GenericValue.h │ ├── NewConfig.cpp │ ├── NewConfig.h │ ├── Test_BitRegister.cpp │ └── Test_Config.cpp └── Version.h └── VS2008 ├── Build.Release.Debugger.bat ├── Build.Release.bat ├── Build.bat ├── Clean.bat ├── Musashi68K ├── Musashi68K.vcproj └── Musashi68K.vcxproj ├── Rebuild.Release.Debugger.bat ├── Rebuild.Release.bat ├── SDL └── SDL.vcxproj ├── SDLmain └── SDLmain.vcxproj ├── SDLnet └── SDL_net.vcxproj ├── Supermodel.sln ├── Supermodel.vcproj ├── Supermodel.vcxproj ├── Supermodel.vcxproj.filters └── ZLib └── ZLib.vcxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/DIR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Assets/DIR.txt -------------------------------------------------------------------------------- /Assets/p1crosshair.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Assets/p1crosshair.bmp -------------------------------------------------------------------------------- /Assets/p2crosshair.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Assets/p2crosshair.bmp -------------------------------------------------------------------------------- /Config/Games.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Config/Games.xml -------------------------------------------------------------------------------- /Config/Music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Config/Music.xml -------------------------------------------------------------------------------- /Config/Supermodel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Config/Supermodel.ini -------------------------------------------------------------------------------- /Docs/Images/Daytona2_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/Daytona2_1.gif -------------------------------------------------------------------------------- /Docs/Images/Daytona2_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/Daytona2_2.gif -------------------------------------------------------------------------------- /Docs/Images/FVipers2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/FVipers2.gif -------------------------------------------------------------------------------- /Docs/Images/LAMachin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/LAMachin.gif -------------------------------------------------------------------------------- /Docs/Images/Real3D_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/Real3D_Logo.png -------------------------------------------------------------------------------- /Docs/Images/Scud.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/Scud.gif -------------------------------------------------------------------------------- /Docs/Images/StarWars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/Images/StarWars.gif -------------------------------------------------------------------------------- /Docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/LICENSE.txt -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/README.md -------------------------------------------------------------------------------- /Docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Docs/README.txt -------------------------------------------------------------------------------- /Makefiles/Makefile.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Makefiles/Makefile.OSX -------------------------------------------------------------------------------- /Makefiles/Makefile.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Makefiles/Makefile.UNIX -------------------------------------------------------------------------------- /Makefiles/Makefile.Win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Makefiles/Makefile.Win32 -------------------------------------------------------------------------------- /Makefiles/Options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Makefiles/Options.inc -------------------------------------------------------------------------------- /Makefiles/Rules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Makefiles/Rules.inc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Scripts/changelog.sh -------------------------------------------------------------------------------- /Scripts/supermodel_build_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Scripts/supermodel_build_bot.py -------------------------------------------------------------------------------- /Src/BlockFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/BlockFile.cpp -------------------------------------------------------------------------------- /Src/BlockFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/BlockFile.h -------------------------------------------------------------------------------- /Src/CPU/68K/68K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/68K.cpp -------------------------------------------------------------------------------- /Src/CPU/68K/68K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/68K.h -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68k.h -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68k_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68k_in.c -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kconf.h -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kcpu.c -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kcpu.h -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kctx.h -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kdasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kdasm.c -------------------------------------------------------------------------------- /Src/CPU/68K/Musashi/m68kmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Musashi/m68kmake.c -------------------------------------------------------------------------------- /Src/CPU/68K/Turbo68K/Make68K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Turbo68K/Make68K.c -------------------------------------------------------------------------------- /Src/CPU/68K/Turbo68K/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Turbo68K/README.TXT -------------------------------------------------------------------------------- /Src/CPU/68K/Turbo68K/Turbo68K.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/68K/Turbo68K/Turbo68K.h -------------------------------------------------------------------------------- /Src/CPU/Bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/Bus.h -------------------------------------------------------------------------------- /Src/CPU/PowerPC/PPCDisasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/PPCDisasm.cpp -------------------------------------------------------------------------------- /Src/CPU/PowerPC/PPCDisasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/PPCDisasm.h -------------------------------------------------------------------------------- /Src/CPU/PowerPC/ppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/ppc.cpp -------------------------------------------------------------------------------- /Src/CPU/PowerPC/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/ppc.h -------------------------------------------------------------------------------- /Src/CPU/PowerPC/ppc603.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/ppc603.c -------------------------------------------------------------------------------- /Src/CPU/PowerPC/ppc_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/ppc_ops.c -------------------------------------------------------------------------------- /Src/CPU/PowerPC/ppc_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/PowerPC/ppc_ops.h -------------------------------------------------------------------------------- /Src/CPU/Z80/Z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/Z80/Z80.cpp -------------------------------------------------------------------------------- /Src/CPU/Z80/Z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/CPU/Z80/Z80.h -------------------------------------------------------------------------------- /Src/Debugger/AddressTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/AddressTable.cpp -------------------------------------------------------------------------------- /Src/Debugger/AddressTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/AddressTable.h -------------------------------------------------------------------------------- /Src/Debugger/Breakpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Breakpoint.cpp -------------------------------------------------------------------------------- /Src/Debugger/Breakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Breakpoint.h -------------------------------------------------------------------------------- /Src/Debugger/CPU/68KDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/68KDebug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPU/68KDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/68KDebug.h -------------------------------------------------------------------------------- /Src/Debugger/CPU/Musashi68KDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Musashi68KDebug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPU/Musashi68KDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Musashi68KDebug.h -------------------------------------------------------------------------------- /Src/Debugger/CPU/PPCDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/PPCDebug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPU/PPCDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/PPCDebug.h -------------------------------------------------------------------------------- /Src/Debugger/CPU/Turbo68KDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Turbo68KDebug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPU/Turbo68KDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Turbo68KDebug.h -------------------------------------------------------------------------------- /Src/Debugger/CPU/Z80Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Z80Debug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPU/Z80Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPU/Z80Debug.h -------------------------------------------------------------------------------- /Src/Debugger/CPUDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPUDebug.cpp -------------------------------------------------------------------------------- /Src/Debugger/CPUDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CPUDebug.h -------------------------------------------------------------------------------- /Src/Debugger/CodeAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CodeAnalyser.cpp -------------------------------------------------------------------------------- /Src/Debugger/CodeAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/CodeAnalyser.h -------------------------------------------------------------------------------- /Src/Debugger/ConsoleDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/ConsoleDebugger.cpp -------------------------------------------------------------------------------- /Src/Debugger/ConsoleDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/ConsoleDebugger.h -------------------------------------------------------------------------------- /Src/Debugger/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Debugger.cpp -------------------------------------------------------------------------------- /Src/Debugger/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Debugger.h -------------------------------------------------------------------------------- /Src/Debugger/DebuggerIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/DebuggerIO.cpp -------------------------------------------------------------------------------- /Src/Debugger/DebuggerIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/DebuggerIO.h -------------------------------------------------------------------------------- /Src/Debugger/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Exception.cpp -------------------------------------------------------------------------------- /Src/Debugger/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Exception.h -------------------------------------------------------------------------------- /Src/Debugger/Interrupt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Interrupt.cpp -------------------------------------------------------------------------------- /Src/Debugger/Interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Interrupt.h -------------------------------------------------------------------------------- /Src/Debugger/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Label.cpp -------------------------------------------------------------------------------- /Src/Debugger/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Label.h -------------------------------------------------------------------------------- /Src/Debugger/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/ReadMe.txt -------------------------------------------------------------------------------- /Src/Debugger/Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Register.cpp -------------------------------------------------------------------------------- /Src/Debugger/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Register.h -------------------------------------------------------------------------------- /Src/Debugger/SupermodelDebugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/SupermodelDebugger.cpp -------------------------------------------------------------------------------- /Src/Debugger/SupermodelDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/SupermodelDebugger.h -------------------------------------------------------------------------------- /Src/Debugger/Watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Watch.cpp -------------------------------------------------------------------------------- /Src/Debugger/Watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Debugger/Watch.h -------------------------------------------------------------------------------- /Src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Game.h -------------------------------------------------------------------------------- /Src/GameLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/GameLoader.cpp -------------------------------------------------------------------------------- /Src/GameLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/GameLoader.h -------------------------------------------------------------------------------- /Src/Graphics/FBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/FBO.cpp -------------------------------------------------------------------------------- /Src/Graphics/FBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/FBO.h -------------------------------------------------------------------------------- /Src/Graphics/IRender3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/IRender3D.h -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Error.cpp -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Legacy3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Legacy3D.cpp -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Legacy3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Legacy3D.h -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Models.cpp -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/DIR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/DIR.txt -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Fragment.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Fragment2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Fragment2D.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Fragment_Flat.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Fragment_Flat.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Fragment_MultiSheet.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Fragment_MultiSheet.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Fragment_NoSpotlight.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Fragment_NoSpotlight.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Vertex.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders/Vertex2D.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders/Vertex2D.glsl -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/Shaders3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/Shaders3D.h -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/TextureRefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/TextureRefs.cpp -------------------------------------------------------------------------------- /Src/Graphics/Legacy3D/TextureRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Legacy3D/TextureRefs.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/GLSLShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/GLSLShader.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/GLSLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/GLSLShader.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/Mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Mat4.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/Mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Mat4.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Model.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Model.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/New3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/New3D.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/New3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/New3D.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Plane.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/PolyHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/PolyHeader.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/PolyHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/PolyHeader.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DData.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DFloat.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DFloat.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DFrameBuffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DFrameBuffers.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DFrameBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DFrameBuffers.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DScrollFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DScrollFog.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DScrollFog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DScrollFog.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DShader.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DShader.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DShaderCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DShaderCommon.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DShaderQuads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DShaderQuads.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/R3DShaderTriangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/R3DShaderTriangles.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/TextureBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/TextureBank.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/TextureBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/TextureBank.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/VBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/VBO.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/VBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/VBO.h -------------------------------------------------------------------------------- /Src/Graphics/New3D/Vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Vec.cpp -------------------------------------------------------------------------------- /Src/Graphics/New3D/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/New3D/Vec.h -------------------------------------------------------------------------------- /Src/Graphics/Render2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Render2D.cpp -------------------------------------------------------------------------------- /Src/Graphics/Render2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Render2D.h -------------------------------------------------------------------------------- /Src/Graphics/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Shader.cpp -------------------------------------------------------------------------------- /Src/Graphics/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Shader.h -------------------------------------------------------------------------------- /Src/Graphics/Shaders2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/Shaders2D.h -------------------------------------------------------------------------------- /Src/Graphics/SuperAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/SuperAA.cpp -------------------------------------------------------------------------------- /Src/Graphics/SuperAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Graphics/SuperAA.h -------------------------------------------------------------------------------- /Src/Inputs/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/Input.cpp -------------------------------------------------------------------------------- /Src/Inputs/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/Input.h -------------------------------------------------------------------------------- /Src/Inputs/InputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputSource.cpp -------------------------------------------------------------------------------- /Src/Inputs/InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputSource.h -------------------------------------------------------------------------------- /Src/Inputs/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputSystem.cpp -------------------------------------------------------------------------------- /Src/Inputs/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputSystem.h -------------------------------------------------------------------------------- /Src/Inputs/InputTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputTypes.cpp -------------------------------------------------------------------------------- /Src/Inputs/InputTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/InputTypes.h -------------------------------------------------------------------------------- /Src/Inputs/Inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/Inputs.cpp -------------------------------------------------------------------------------- /Src/Inputs/Inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/Inputs.h -------------------------------------------------------------------------------- /Src/Inputs/MultiInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/MultiInputSource.cpp -------------------------------------------------------------------------------- /Src/Inputs/MultiInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Inputs/MultiInputSource.h -------------------------------------------------------------------------------- /Src/Model3/53C810.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/53C810.cpp -------------------------------------------------------------------------------- /Src/Model3/53C810.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/53C810.h -------------------------------------------------------------------------------- /Src/Model3/53C810Disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/53C810Disasm.cpp -------------------------------------------------------------------------------- /Src/Model3/93C46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/93C46.cpp -------------------------------------------------------------------------------- /Src/Model3/93C46.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/93C46.h -------------------------------------------------------------------------------- /Src/Model3/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Crypto.cpp -------------------------------------------------------------------------------- /Src/Model3/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Crypto.h -------------------------------------------------------------------------------- /Src/Model3/DSB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DSB.cpp -------------------------------------------------------------------------------- /Src/Model3/DSB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DSB.h -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/BillBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/BillBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/BillBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/BillBoard.h -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/DriveBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/DriveBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/DriveBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/DriveBoard.h -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/JoystickBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/JoystickBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/JoystickBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/JoystickBoard.h -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/SkiBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/SkiBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/SkiBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/SkiBoard.h -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/WheelBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/WheelBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/DriveBoard/WheelBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/DriveBoard/WheelBoard.h -------------------------------------------------------------------------------- /Src/Model3/IEmulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/IEmulator.h -------------------------------------------------------------------------------- /Src/Model3/IRQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/IRQ.cpp -------------------------------------------------------------------------------- /Src/Model3/IRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/IRQ.h -------------------------------------------------------------------------------- /Src/Model3/JTAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/JTAG.cpp -------------------------------------------------------------------------------- /Src/Model3/JTAG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/JTAG.h -------------------------------------------------------------------------------- /Src/Model3/MPC10x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/MPC10x.cpp -------------------------------------------------------------------------------- /Src/Model3/MPC10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/MPC10x.h -------------------------------------------------------------------------------- /Src/Model3/Model3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Model3.cpp -------------------------------------------------------------------------------- /Src/Model3/Model3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Model3.h -------------------------------------------------------------------------------- /Src/Model3/Model3GraphicsState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Model3GraphicsState.h -------------------------------------------------------------------------------- /Src/Model3/PCI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/PCI.cpp -------------------------------------------------------------------------------- /Src/Model3/PCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/PCI.h -------------------------------------------------------------------------------- /Src/Model3/RTC72421.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/RTC72421.cpp -------------------------------------------------------------------------------- /Src/Model3/RTC72421.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/RTC72421.h -------------------------------------------------------------------------------- /Src/Model3/Real3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Real3D.cpp -------------------------------------------------------------------------------- /Src/Model3/Real3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/Real3D.h -------------------------------------------------------------------------------- /Src/Model3/SoundBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/SoundBoard.cpp -------------------------------------------------------------------------------- /Src/Model3/SoundBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/SoundBoard.h -------------------------------------------------------------------------------- /Src/Model3/TileGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/TileGen.cpp -------------------------------------------------------------------------------- /Src/Model3/TileGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/TileGen.h -------------------------------------------------------------------------------- /Src/Model3/TileGenBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Model3/TileGenBuffer.h -------------------------------------------------------------------------------- /Src/Network/INetBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/INetBoard.h -------------------------------------------------------------------------------- /Src/Network/NetBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/NetBoard.cpp -------------------------------------------------------------------------------- /Src/Network/NetBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/NetBoard.h -------------------------------------------------------------------------------- /Src/Network/SimNetBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/SimNetBoard.cpp -------------------------------------------------------------------------------- /Src/Network/SimNetBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/SimNetBoard.h -------------------------------------------------------------------------------- /Src/Network/TCPReceive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPReceive.cpp -------------------------------------------------------------------------------- /Src/Network/TCPReceive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPReceive.h -------------------------------------------------------------------------------- /Src/Network/TCPSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPSend.cpp -------------------------------------------------------------------------------- /Src/Network/TCPSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPSend.h -------------------------------------------------------------------------------- /Src/Network/TCPSendAsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPSendAsync.cpp -------------------------------------------------------------------------------- /Src/Network/TCPSendAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Network/TCPSendAsync.h -------------------------------------------------------------------------------- /Src/OSD/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Audio.h -------------------------------------------------------------------------------- /Src/OSD/DefaultConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/DefaultConfigFile.h -------------------------------------------------------------------------------- /Src/OSD/FileSystemPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/FileSystemPath.h -------------------------------------------------------------------------------- /Src/OSD/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Logger.cpp -------------------------------------------------------------------------------- /Src/OSD/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Logger.h -------------------------------------------------------------------------------- /Src/OSD/OSX/FileSystemPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/OSX/FileSystemPath.cpp -------------------------------------------------------------------------------- /Src/OSD/Outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Outputs.cpp -------------------------------------------------------------------------------- /Src/OSD/Outputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Outputs.h -------------------------------------------------------------------------------- /Src/OSD/SDL/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Audio.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/Crosshair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Crosshair.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/Crosshair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Crosshair.h -------------------------------------------------------------------------------- /Src/OSD/SDL/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Gui.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Gui.h -------------------------------------------------------------------------------- /Src/OSD/SDL/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Main.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Main.h -------------------------------------------------------------------------------- /Src/OSD/SDL/PolyAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/PolyAnalysis.h -------------------------------------------------------------------------------- /Src/OSD/SDL/SDLIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/SDLIncludes.h -------------------------------------------------------------------------------- /Src/OSD/SDL/SDLInputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/SDLInputSystem.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/SDLInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/SDLInputSystem.h -------------------------------------------------------------------------------- /Src/OSD/SDL/SDLMain_tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/SDLMain_tmpl.h -------------------------------------------------------------------------------- /Src/OSD/SDL/SDLMain_tmpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/SDLMain_tmpl.m -------------------------------------------------------------------------------- /Src/OSD/SDL/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Thread.cpp -------------------------------------------------------------------------------- /Src/OSD/SDL/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/SDL/Types.h -------------------------------------------------------------------------------- /Src/OSD/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Thread.h -------------------------------------------------------------------------------- /Src/OSD/Unix/FileSystemPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Unix/FileSystemPath.cpp -------------------------------------------------------------------------------- /Src/OSD/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Video.h -------------------------------------------------------------------------------- /Src/OSD/Windows/DirectInputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/DirectInputSystem.cpp -------------------------------------------------------------------------------- /Src/OSD/Windows/DirectInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/DirectInputSystem.h -------------------------------------------------------------------------------- /Src/OSD/Windows/FileSystemPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/FileSystemPath.cpp -------------------------------------------------------------------------------- /Src/OSD/Windows/SupermodelManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/SupermodelManifest.xml -------------------------------------------------------------------------------- /Src/OSD/Windows/SupermodelResources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/SupermodelResources.rc -------------------------------------------------------------------------------- /Src/OSD/Windows/WinOutputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/WinOutputs.cpp -------------------------------------------------------------------------------- /Src/OSD/Windows/WinOutputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/OSD/Windows/WinOutputs.h -------------------------------------------------------------------------------- /Src/Pkgs/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/GL/glew.h -------------------------------------------------------------------------------- /Src/Pkgs/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/GL/glxew.h -------------------------------------------------------------------------------- /Src/Pkgs/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/GL/wglew.h -------------------------------------------------------------------------------- /Src/Pkgs/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/crypt.h -------------------------------------------------------------------------------- /Src/Pkgs/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/glew.c -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imconfig.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_internal.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /Src/Pkgs/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /Src/Pkgs/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/ioapi.c -------------------------------------------------------------------------------- /Src/Pkgs/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/ioapi.h -------------------------------------------------------------------------------- /Src/Pkgs/minimp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/minimp3.h -------------------------------------------------------------------------------- /Src/Pkgs/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/tinyxml2.cpp -------------------------------------------------------------------------------- /Src/Pkgs/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/tinyxml2.h -------------------------------------------------------------------------------- /Src/Pkgs/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/unzip.c -------------------------------------------------------------------------------- /Src/Pkgs/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/unzip.h -------------------------------------------------------------------------------- /Src/Pkgs/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Pkgs/wglew.h -------------------------------------------------------------------------------- /Src/ROMSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/ROMSet.cpp -------------------------------------------------------------------------------- /Src/ROMSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/ROMSet.h -------------------------------------------------------------------------------- /Src/Sound/MPEG/MpegAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/MPEG/MpegAudio.cpp -------------------------------------------------------------------------------- /Src/Sound/MPEG/MpegAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/MPEG/MpegAudio.h -------------------------------------------------------------------------------- /Src/Sound/SCSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/SCSP.cpp -------------------------------------------------------------------------------- /Src/Sound/SCSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/SCSP.h -------------------------------------------------------------------------------- /Src/Sound/SCSPDSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/SCSPDSP.cpp -------------------------------------------------------------------------------- /Src/Sound/SCSPDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/SCSPDSP.h -------------------------------------------------------------------------------- /Src/Sound/SCSPLFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Sound/SCSPLFO.cpp -------------------------------------------------------------------------------- /Src/Supermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Supermodel.h -------------------------------------------------------------------------------- /Src/Util/BMPFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/BMPFile.h -------------------------------------------------------------------------------- /Src/Util/BitCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/BitCast.h -------------------------------------------------------------------------------- /Src/Util/ByteSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/ByteSwap.cpp -------------------------------------------------------------------------------- /Src/Util/ByteSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/ByteSwap.h -------------------------------------------------------------------------------- /Src/Util/ConfigBuilders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/ConfigBuilders.cpp -------------------------------------------------------------------------------- /Src/Util/ConfigBuilders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/ConfigBuilders.h -------------------------------------------------------------------------------- /Src/Util/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/Format.cpp -------------------------------------------------------------------------------- /Src/Util/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/Format.h -------------------------------------------------------------------------------- /Src/Util/GenericValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/GenericValue.h -------------------------------------------------------------------------------- /Src/Util/NewConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/NewConfig.cpp -------------------------------------------------------------------------------- /Src/Util/NewConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/NewConfig.h -------------------------------------------------------------------------------- /Src/Util/Test_BitRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/Test_BitRegister.cpp -------------------------------------------------------------------------------- /Src/Util/Test_Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Util/Test_Config.cpp -------------------------------------------------------------------------------- /Src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/Src/Version.h -------------------------------------------------------------------------------- /VS2008/Build.Release.Debugger.bat: -------------------------------------------------------------------------------- 1 | SET CL=/DSUPERMODEL_DEBUGGER 2 | call Build.Release.bat %1 3 | -------------------------------------------------------------------------------- /VS2008/Build.Release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Build.Release.bat -------------------------------------------------------------------------------- /VS2008/Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Build.bat -------------------------------------------------------------------------------- /VS2008/Clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Clean.bat -------------------------------------------------------------------------------- /VS2008/Musashi68K/Musashi68K.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Musashi68K/Musashi68K.vcproj -------------------------------------------------------------------------------- /VS2008/Musashi68K/Musashi68K.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Musashi68K/Musashi68K.vcxproj -------------------------------------------------------------------------------- /VS2008/Rebuild.Release.Debugger.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Rebuild.Release.Debugger.bat -------------------------------------------------------------------------------- /VS2008/Rebuild.Release.bat: -------------------------------------------------------------------------------- 1 | call Build.Release.bat Rebuild 2 | -------------------------------------------------------------------------------- /VS2008/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /VS2008/SDLmain/SDLmain.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/SDLmain/SDLmain.vcxproj -------------------------------------------------------------------------------- /VS2008/SDLnet/SDL_net.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/SDLnet/SDL_net.vcxproj -------------------------------------------------------------------------------- /VS2008/Supermodel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Supermodel.sln -------------------------------------------------------------------------------- /VS2008/Supermodel.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Supermodel.vcproj -------------------------------------------------------------------------------- /VS2008/Supermodel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Supermodel.vcxproj -------------------------------------------------------------------------------- /VS2008/Supermodel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/Supermodel.vcxproj.filters -------------------------------------------------------------------------------- /VS2008/ZLib/ZLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BackPonBeauty/Supermodel3-PonMi/HEAD/VS2008/ZLib/ZLib.vcxproj --------------------------------------------------------------------------------