├── .gitignore ├── GX_gfx ├── Gfx_#1.3.h ├── SoftGFXPlugin.h ├── bl_GX.cpp ├── bl_GX.h ├── cc_GX.cpp ├── cc_GX.h ├── color.h ├── font.c ├── font.h ├── global.h ├── main.cpp ├── matrix.h ├── rsp_GX.cpp ├── rsp_GX.h ├── tx_GX.cpp ├── tx_GX.h ├── vektor.h ├── vi.cpp ├── vi.h ├── vi_GX.cpp └── vi_GX.h ├── LICENCE.TXT ├── Makefile.GX_gfx ├── Makefile.GX_gfx_wii ├── Makefile.Rice ├── Makefile.Rice_gc ├── Makefile.Rice_wii ├── Makefile.base ├── Makefile.gc ├── Makefile.glN64 ├── Makefile.glN64_gc ├── Makefile.glN64_wii ├── Makefile.sft_gfx ├── Makefile.sft_gfx_wii ├── Makefile.wii ├── README ├── Rice_GX ├── CNvTNTCombiner.cpp ├── CNvTNTCombiner.h ├── COLOR.h ├── CSortedList.h ├── Combiner.cpp ├── Combiner.h ├── CombinerDefs.h ├── CombinerTable.cpp ├── Config.cpp ├── Config.h ├── ConvertImage.cpp ├── ConvertImage.h ├── ConvertImage16.cpp ├── ConvertImageGX.cpp ├── CritSect.h ├── Debugger.cpp ├── Debugger.h ├── DecodedMux.cpp ├── DecodedMux.h ├── DeviceBuilder.cpp ├── DeviceBuilder.h ├── DirectXDecodedMux.cpp ├── DirectXDecodedMux.h ├── ExtendedRender.h ├── FrameBuffer.cpp ├── FrameBuffer.h ├── GFXPlugin.h ├── GeneralCombiner.cpp ├── GeneralCombiner.h ├── GraphicsContext.cpp ├── GraphicsContext.h ├── Graphics_1.3.h ├── IColor.h ├── Makefile ├── OGLCombiner.cpp ├── OGLCombiner.h ├── OGLCombinerNV.cpp ├── OGLCombinerNV.h ├── OGLCombinerTNT2.cpp ├── OGLCombinerTNT2.h ├── OGLDecodedMux.cpp ├── OGLDecodedMux.h ├── OGLExtCombiner.cpp ├── OGLExtCombiner.h ├── OGLExtRender.cpp ├── OGLExtRender.h ├── OGLFragmentShaders.cpp ├── OGLFragmentShaders.h ├── OGLGraphicsContext.cpp ├── OGLGraphicsContext.h ├── OGLRender.cpp ├── OGLRender.h ├── OGLRenderExt.cpp ├── OGLTexture.cpp ├── OGLTexture.h ├── RDP_Texture.h ├── RSP_GBI0.h ├── RSP_GBI1.h ├── RSP_GBI2.h ├── RSP_GBI2_ext.h ├── RSP_GBI_Others.h ├── RSP_GBI_Sprite2D.h ├── RSP_Parser.cpp ├── RSP_Parser.h ├── RSP_S2DEX.cpp ├── RSP_S2DEX.h ├── Render.cpp ├── Render.h ├── RenderBase.cpp ├── RenderBase.h ├── RenderExt.cpp ├── RenderTexture.cpp ├── RenderTexture.h ├── TEVBlender.cpp ├── TEVBlender.h ├── TEVCombiner.cpp ├── TEVCombiner.h ├── Texture.cpp ├── Texture.h ├── TextureFilters.cpp ├── TextureFilters.h ├── TextureFilters_2xsai.cpp ├── TextureFilters_hq2x.cpp ├── TextureFilters_hq2x.h ├── TextureFilters_hq4x.cpp ├── TextureFilters_hq4x.h ├── TextureFilters_lq2x.h ├── TextureManager.cpp ├── TextureManager.h ├── Timing.h ├── UcodeDefs.h ├── VertexShaderConstantDef.h ├── Video.cpp ├── Video.h ├── blender.cpp ├── blender.h ├── gl.h ├── glATI.h ├── glext.h ├── gui_gtk2 │ ├── main_gtk2.cpp │ └── messagebox_gtk2.c ├── liblinux │ ├── BMGDLL.h │ ├── BMGImage.c │ ├── BMGImage.h │ ├── BMGLibPNG.h │ ├── BMGUtils.c │ ├── BMGUtils.h │ ├── bmp.c │ ├── inffixed.h │ ├── jpegrw.h │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngerror.c │ ├── pngget.c │ ├── pngmem.c │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngrw.c │ ├── pngrw.h │ ├── pngset.c │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── tiffrw.h │ ├── zconf.h │ └── zlib.h ├── math.cpp ├── math.h ├── messagebox.h ├── messagebox_nogui.cpp ├── stdafx.h ├── typedefs.h ├── ucode.h ├── version.h └── winlnxdefs.h ├── TextureArchive ├── Archive.h ├── ArchiveReader.cpp ├── ArchiveReader.h └── Endian.h ├── config.h ├── debugger ├── ChangeLog ├── README ├── TODO ├── breakpoints.c ├── breakpoints.h ├── debugger.c ├── debugger.h ├── decoder.c ├── decoder.h ├── desasm.c ├── desasm.h ├── regAI.c ├── regAI.h ├── regCop0.c ├── regCop0.h ├── regCop1.c ├── regCop1.h ├── regGPR.c ├── regGPR.h ├── regPI.c ├── regPI.h ├── regRI.c ├── regRI.h ├── regSI.c ├── regSI.h ├── regSpecial.c ├── regSpecial.h ├── regTLB.c ├── regTLB.h ├── regVI.c ├── regVI.h ├── registers.c ├── registers.h ├── types.h ├── ui_clist_edit.c └── ui_clist_edit.h ├── doc ├── HiRezTexture.txt ├── compile.sh ├── logo.eps ├── readme.latex └── readme.pdf ├── fileBrowser ├── HW64 │ ├── banner.bin │ ├── cert │ ├── customTitle.h │ ├── customTitle.s │ ├── hw64.tik │ └── hw64.tmd ├── drivecodes.h ├── fileBrowser-CARD.c ├── fileBrowser-CARD.h ├── fileBrowser-DVD.c ├── fileBrowser-DVD.h ├── fileBrowser-WiiFS.c ├── fileBrowser-WiiFS.h ├── fileBrowser-libfat.c ├── fileBrowser-libfat.h ├── fileBrowser.c ├── fileBrowser.h ├── gc_dvd.c ├── gc_dvd.h └── imagedata │ ├── Thumbs.db │ ├── icon.png │ └── mupenIcon.h ├── gc_audio ├── AudioPlugin.h ├── Audio_#1.1.h └── audio.c ├── gc_input ├── Controller_#1.1.h ├── InputPlugin.h ├── PakIO.h ├── controller-Classic.c ├── controller-DRC.c ├── controller-GC.c ├── controller-WiimoteNunchuk.c ├── controller.h └── input.c ├── gc_memory ├── ARAM.h ├── MEM2.h ├── Saves.h ├── TLB-Cache-hash.c ├── TLB-Cache.c ├── TLB-Cache.h ├── dma.c ├── dma.h ├── flashram.c ├── flashram.h ├── mcbanner.h ├── memory.c ├── memory.h ├── n64_cic_nus_6105.c ├── n64_cic_nus_6105.h ├── pif.c ├── pif.h ├── tlb.c └── tlb.h ├── glN64_GX ├── 2xSAI.cpp ├── 2xSAI.h ├── 3DMath.h ├── CRC.cpp ├── CRC.h ├── Combiner.cpp ├── Combiner.h ├── Config.h ├── Config_linux.cpp ├── Debug.h ├── DepthBuffer.cpp ├── DepthBuffer.h ├── F3D.cpp ├── F3D.h ├── F3DCBFD.cpp ├── F3DCBFD.h ├── F3DDKR.cpp ├── F3DDKR.h ├── F3DEX.cpp ├── F3DEX.h ├── F3DEX2.cpp ├── F3DEX2.h ├── F3DPD.cpp ├── F3DPD.h ├── F3DWRUS.cpp ├── F3DWRUS.h ├── FrameBuffer.cpp ├── FrameBuffer.h ├── GBI.cpp ├── GBI.h ├── GFXPlugin.h ├── L3D.cpp ├── L3D.h ├── L3DEX.cpp ├── L3DEX.h ├── L3DEX2.cpp ├── L3DEX2.h ├── N64.cpp ├── N64.h ├── NV_register_combiners.cpp ├── NV_register_combiners.h ├── OpenGL.cpp ├── OpenGL.h ├── RDP.cpp ├── RDP.h ├── RSP.cpp ├── RSP.h ├── S2DEX.cpp ├── S2DEX.h ├── S2DEX2.cpp ├── S2DEX2.h ├── TEV_combiner.cpp ├── TEV_combiner.h ├── Textures.cpp ├── Textures.h ├── Types.h ├── VI.cpp ├── VI.h ├── Zilmar GFX 1.3.h ├── convert.h ├── gDP.cpp ├── gDP.h ├── gSP.cpp ├── gSP.h ├── gl.h ├── glATI.h ├── glN64.cpp ├── glN64.h ├── glext.h ├── texture_env.cpp ├── texture_env.h ├── texture_env_combine.cpp └── texture_env_combine.h ├── gui ├── ARIAL.H ├── DEBUG.c ├── DEBUG.h ├── GUI.c ├── GUI.h ├── TEXT.c ├── TEXT.h ├── background.tex ├── background.tlut ├── background_tex.s ├── font.c ├── font.h ├── gui_GX-menu.c ├── gui_GX-menu.h ├── gui_GX.c ├── gui_GX.h ├── logo.tex ├── menu.c ├── menu.h ├── menuFileBrowser.c └── menuFileBrowser.h ├── libgui ├── Box3D.cpp ├── Box3D.h ├── Button.cpp ├── Button.h ├── Component.cpp ├── Component.h ├── CursorManager.cpp ├── CursorManager.h ├── FocusManager.cpp ├── FocusManager.h ├── Frame.cpp ├── Frame.h ├── GraphicsGX.cpp ├── GraphicsGX.h ├── Gui.cpp ├── Gui.h ├── GuiResources.cpp ├── GuiResources.h ├── GuiTypes.h ├── IPLFont.cpp ├── IPLFont.h ├── Image.cpp ├── Image.h ├── InputManager.cpp ├── InputManager.h ├── InputStatusBar.cpp ├── InputStatusBar.h ├── LoadingBar.cpp ├── LoadingBar.h ├── Logo.cpp ├── Logo.h ├── MainInfoBar.cpp ├── MainInfoBar.h ├── MessageBox.cpp ├── MessageBox.h ├── MiniInfoBar.cpp ├── MiniInfoBar.h ├── TextBox.cpp ├── TextBox.h ├── resources.h ├── resources.s └── resources │ ├── Button.tx │ ├── ButtonA.tlt │ ├── ButtonA.tx │ ├── ButtonAFoc.tx │ ├── ButtonASelOff.tx │ ├── ButtonASelOffFoc.tx │ ├── ButtonASelOn.tx │ ├── ButtonASelOnFoc.tx │ ├── ButtonFocus.tx │ ├── CursorGrab.tx │ └── CursorPoint.tx ├── logo.xpm ├── main ├── Audio_#1.1.h ├── Controller_#1.1.h ├── Gfx_#1.3.h ├── KillWiimote.c ├── ROM-Cache.c ├── ROM-Cache.h ├── Rsp_#1.1.h ├── adler32.c ├── boxart.c ├── boxart.h ├── boxart_none.tex ├── boxart_resource.s ├── gamehacks.c ├── gamehacks.h ├── gczip.c ├── gczip.h ├── guifuncs.h ├── main.h ├── main_gc-menu.c ├── main_gc-menu2.cpp ├── main_gc.c ├── md5.c ├── md5.h ├── mupenIniApi.c ├── mupenIniApi.h ├── plugin.c ├── plugin.h ├── rom.h ├── rom_gc.c ├── savestates.h ├── savestates_gc.c ├── textFileBrowser.c ├── timers.c ├── timers.h ├── wii64config.h ├── winlnxdefs.h ├── xxhash.c └── xxhash.h ├── menu ├── ConfigureButtonsFrame.cpp ├── ConfigureButtonsFrame.h ├── ConfigureInputFrame.cpp ├── ConfigureInputFrame.h ├── ConfigurePaksFrame.cpp ├── ConfigurePaksFrame.h ├── CurrentRomFrame.cpp ├── CurrentRomFrame.h ├── FileBrowserFrame.cpp ├── FileBrowserFrame.h ├── LoadRomFrame.cpp ├── LoadRomFrame.h ├── LoadSaveFrame.cpp ├── LoadSaveFrame.h ├── MainFrame.cpp ├── MainFrame.h ├── MenuContext.cpp ├── MenuContext.h ├── MenuResources.h ├── MenuResources.s ├── MenuTypes.h ├── MiniMenuFrame.cpp ├── MiniMenuFrame.h ├── SaveGameFrame.cpp ├── SaveGameFrame.h ├── SelectCPUFrame.cpp ├── SelectCPUFrame.h ├── SelectRomFrame.cpp ├── SelectRomFrame.h ├── SettingsFrame.cpp ├── SettingsFrame.h └── resources │ ├── Loading.tx │ ├── bg.tx │ ├── cntrlClassic.tx │ ├── cntrlEmpty.tx │ ├── cntrlGC.tx │ ├── cntrlWM.tx │ ├── cntrlWNC.tx │ ├── cntrlWUPro.tx │ ├── cube64.tx │ ├── n64Cntrl.tx │ └── wii64.tx ├── mupen64.ini ├── mupen64_soft_gfx ├── Gfx_#1.3.h ├── SoftGFXPlugin.h ├── bl.cpp ├── bl.h ├── cc.cpp ├── cc.h ├── color.h ├── global.h ├── main.cpp ├── matrix.h ├── rdp.cpp ├── rdp.h ├── rs.cpp ├── rs.h ├── rsp.cpp ├── rsp.h ├── tf.cpp ├── tf.h ├── tx.cpp ├── tx.h ├── vektor.h ├── vi.cpp ├── vi.h ├── vi_GX.cpp ├── vi_GX.h ├── vi_SDL.cpp └── vi_SDL.h ├── ogc_patches ├── wiiupro.patch ├── wpad.c └── wpad.h ├── r4300 ├── Invalid_Code.c ├── Invalid_Code.h ├── Recomp-Cache-Heap.c ├── Recomp-Cache.c ├── Recomp-Cache.h ├── compare_core.c ├── exception.c ├── exception.h ├── interupt.c ├── interupt.h ├── macros.h ├── ppc │ ├── FuncTree.c │ ├── Interpreter.h │ ├── MIPS-to-PPC.c │ ├── MIPS-to-PPC.h │ ├── MIPS.h │ ├── PowerPC.h │ ├── Recompile.c │ ├── Recompile.h │ ├── Register-Cache.c │ ├── Register-Cache.h │ ├── Wrappers.c │ └── Wrappers.h ├── profile.c ├── pure_interp.c ├── r4300.c ├── r4300.h ├── recomp.c └── recomp.h ├── release ├── README ├── apps │ ├── wii64 Rice │ │ ├── icon.png │ │ └── meta.xml │ └── wii64 │ │ ├── icon.png │ │ └── meta.xml └── wii64 │ └── RiceVideoLinux.ini ├── rsp_hle-ppc ├── Audio_#1.1.h ├── RSPPlugin.h ├── Rsp_#1.1.h ├── disasm.c ├── hle.h ├── jpeg.c ├── main.c ├── ucode1.c ├── ucode2.c ├── ucode3.c └── wintypes.h ├── rsp_hle ├── Audio_#1.1.h ├── RSPPlugin.h ├── Rsp_#1.1.h ├── alist.c ├── alist.h ├── alist_audio.c ├── alist_naudio.c ├── alist_nead.c ├── arithmetics.h ├── audio.c ├── audio.h ├── cicx105.c ├── common.h ├── disasm.c ├── hle.c ├── hle.h ├── hle_external.h ├── hle_internal.h ├── jpeg.c ├── main.c ├── memory.c ├── memory.h ├── mp3.c ├── musyx.c ├── musyx.h ├── plugin.c ├── re2.c ├── ucode1.cpp ├── ucode2.cpp ├── ucode3.cpp ├── ucode3mp3.cpp ├── ucodes.h └── wintypes.h ├── util └── boxartpacker.c └── vm ├── dsihandler.s ├── vm.c ├── vm.h ├── wii_vm.c └── wii_vm.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/.gitignore -------------------------------------------------------------------------------- /GX_gfx/Gfx_#1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/Gfx_#1.3.h -------------------------------------------------------------------------------- /GX_gfx/SoftGFXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/SoftGFXPlugin.h -------------------------------------------------------------------------------- /GX_gfx/bl_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/bl_GX.cpp -------------------------------------------------------------------------------- /GX_gfx/bl_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/bl_GX.h -------------------------------------------------------------------------------- /GX_gfx/cc_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/cc_GX.cpp -------------------------------------------------------------------------------- /GX_gfx/cc_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/cc_GX.h -------------------------------------------------------------------------------- /GX_gfx/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/color.h -------------------------------------------------------------------------------- /GX_gfx/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/font.c -------------------------------------------------------------------------------- /GX_gfx/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/font.h -------------------------------------------------------------------------------- /GX_gfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/global.h -------------------------------------------------------------------------------- /GX_gfx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/main.cpp -------------------------------------------------------------------------------- /GX_gfx/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/matrix.h -------------------------------------------------------------------------------- /GX_gfx/rsp_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/rsp_GX.cpp -------------------------------------------------------------------------------- /GX_gfx/rsp_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/rsp_GX.h -------------------------------------------------------------------------------- /GX_gfx/tx_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/tx_GX.cpp -------------------------------------------------------------------------------- /GX_gfx/tx_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/tx_GX.h -------------------------------------------------------------------------------- /GX_gfx/vektor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/vektor.h -------------------------------------------------------------------------------- /GX_gfx/vi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/vi.cpp -------------------------------------------------------------------------------- /GX_gfx/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/vi.h -------------------------------------------------------------------------------- /GX_gfx/vi_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/vi_GX.cpp -------------------------------------------------------------------------------- /GX_gfx/vi_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/GX_gfx/vi_GX.h -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /Makefile.GX_gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.GX_gfx -------------------------------------------------------------------------------- /Makefile.GX_gfx_wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.GX_gfx_wii -------------------------------------------------------------------------------- /Makefile.Rice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.Rice -------------------------------------------------------------------------------- /Makefile.Rice_gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.Rice_gc -------------------------------------------------------------------------------- /Makefile.Rice_wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.Rice_wii -------------------------------------------------------------------------------- /Makefile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.base -------------------------------------------------------------------------------- /Makefile.gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.gc -------------------------------------------------------------------------------- /Makefile.glN64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.glN64 -------------------------------------------------------------------------------- /Makefile.glN64_gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.glN64_gc -------------------------------------------------------------------------------- /Makefile.glN64_wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.glN64_wii -------------------------------------------------------------------------------- /Makefile.sft_gfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.sft_gfx -------------------------------------------------------------------------------- /Makefile.sft_gfx_wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.sft_gfx_wii -------------------------------------------------------------------------------- /Makefile.wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Makefile.wii -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/README -------------------------------------------------------------------------------- /Rice_GX/CNvTNTCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CNvTNTCombiner.cpp -------------------------------------------------------------------------------- /Rice_GX/CNvTNTCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CNvTNTCombiner.h -------------------------------------------------------------------------------- /Rice_GX/COLOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/COLOR.h -------------------------------------------------------------------------------- /Rice_GX/CSortedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CSortedList.h -------------------------------------------------------------------------------- /Rice_GX/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Combiner.cpp -------------------------------------------------------------------------------- /Rice_GX/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Combiner.h -------------------------------------------------------------------------------- /Rice_GX/CombinerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CombinerDefs.h -------------------------------------------------------------------------------- /Rice_GX/CombinerTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CombinerTable.cpp -------------------------------------------------------------------------------- /Rice_GX/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Config.cpp -------------------------------------------------------------------------------- /Rice_GX/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Config.h -------------------------------------------------------------------------------- /Rice_GX/ConvertImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ConvertImage.cpp -------------------------------------------------------------------------------- /Rice_GX/ConvertImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ConvertImage.h -------------------------------------------------------------------------------- /Rice_GX/ConvertImage16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ConvertImage16.cpp -------------------------------------------------------------------------------- /Rice_GX/ConvertImageGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ConvertImageGX.cpp -------------------------------------------------------------------------------- /Rice_GX/CritSect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/CritSect.h -------------------------------------------------------------------------------- /Rice_GX/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Debugger.cpp -------------------------------------------------------------------------------- /Rice_GX/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Debugger.h -------------------------------------------------------------------------------- /Rice_GX/DecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DecodedMux.cpp -------------------------------------------------------------------------------- /Rice_GX/DecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DecodedMux.h -------------------------------------------------------------------------------- /Rice_GX/DeviceBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DeviceBuilder.cpp -------------------------------------------------------------------------------- /Rice_GX/DeviceBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DeviceBuilder.h -------------------------------------------------------------------------------- /Rice_GX/DirectXDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DirectXDecodedMux.cpp -------------------------------------------------------------------------------- /Rice_GX/DirectXDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/DirectXDecodedMux.h -------------------------------------------------------------------------------- /Rice_GX/ExtendedRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ExtendedRender.h -------------------------------------------------------------------------------- /Rice_GX/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/FrameBuffer.cpp -------------------------------------------------------------------------------- /Rice_GX/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/FrameBuffer.h -------------------------------------------------------------------------------- /Rice_GX/GFXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/GFXPlugin.h -------------------------------------------------------------------------------- /Rice_GX/GeneralCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/GeneralCombiner.cpp -------------------------------------------------------------------------------- /Rice_GX/GeneralCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/GeneralCombiner.h -------------------------------------------------------------------------------- /Rice_GX/GraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/GraphicsContext.cpp -------------------------------------------------------------------------------- /Rice_GX/GraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/GraphicsContext.h -------------------------------------------------------------------------------- /Rice_GX/Graphics_1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Graphics_1.3.h -------------------------------------------------------------------------------- /Rice_GX/IColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/IColor.h -------------------------------------------------------------------------------- /Rice_GX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Makefile -------------------------------------------------------------------------------- /Rice_GX/OGLCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombiner.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombiner.h -------------------------------------------------------------------------------- /Rice_GX/OGLCombinerNV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombinerNV.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLCombinerNV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombinerNV.h -------------------------------------------------------------------------------- /Rice_GX/OGLCombinerTNT2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombinerTNT2.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLCombinerTNT2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLCombinerTNT2.h -------------------------------------------------------------------------------- /Rice_GX/OGLDecodedMux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLDecodedMux.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLDecodedMux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLDecodedMux.h -------------------------------------------------------------------------------- /Rice_GX/OGLExtCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLExtCombiner.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLExtCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLExtCombiner.h -------------------------------------------------------------------------------- /Rice_GX/OGLExtRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLExtRender.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLExtRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLExtRender.h -------------------------------------------------------------------------------- /Rice_GX/OGLFragmentShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLFragmentShaders.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLFragmentShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLFragmentShaders.h -------------------------------------------------------------------------------- /Rice_GX/OGLGraphicsContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLGraphicsContext.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLGraphicsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLGraphicsContext.h -------------------------------------------------------------------------------- /Rice_GX/OGLRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLRender.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLRender.h -------------------------------------------------------------------------------- /Rice_GX/OGLRenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLRenderExt.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLTexture.cpp -------------------------------------------------------------------------------- /Rice_GX/OGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/OGLTexture.h -------------------------------------------------------------------------------- /Rice_GX/RDP_Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RDP_Texture.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI0.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI1.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI2.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI2_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI2_ext.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI_Others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI_Others.h -------------------------------------------------------------------------------- /Rice_GX/RSP_GBI_Sprite2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_GBI_Sprite2D.h -------------------------------------------------------------------------------- /Rice_GX/RSP_Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_Parser.cpp -------------------------------------------------------------------------------- /Rice_GX/RSP_Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_Parser.h -------------------------------------------------------------------------------- /Rice_GX/RSP_S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_S2DEX.cpp -------------------------------------------------------------------------------- /Rice_GX/RSP_S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RSP_S2DEX.h -------------------------------------------------------------------------------- /Rice_GX/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Render.cpp -------------------------------------------------------------------------------- /Rice_GX/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Render.h -------------------------------------------------------------------------------- /Rice_GX/RenderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RenderBase.cpp -------------------------------------------------------------------------------- /Rice_GX/RenderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RenderBase.h -------------------------------------------------------------------------------- /Rice_GX/RenderExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RenderExt.cpp -------------------------------------------------------------------------------- /Rice_GX/RenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RenderTexture.cpp -------------------------------------------------------------------------------- /Rice_GX/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/RenderTexture.h -------------------------------------------------------------------------------- /Rice_GX/TEVBlender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TEVBlender.cpp -------------------------------------------------------------------------------- /Rice_GX/TEVBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TEVBlender.h -------------------------------------------------------------------------------- /Rice_GX/TEVCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TEVCombiner.cpp -------------------------------------------------------------------------------- /Rice_GX/TEVCombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TEVCombiner.h -------------------------------------------------------------------------------- /Rice_GX/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Texture.cpp -------------------------------------------------------------------------------- /Rice_GX/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Texture.h -------------------------------------------------------------------------------- /Rice_GX/TextureFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters.cpp -------------------------------------------------------------------------------- /Rice_GX/TextureFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters.h -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_2xsai.cpp -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_hq2x.cpp -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_hq2x.h -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_hq4x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_hq4x.cpp -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_hq4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_hq4x.h -------------------------------------------------------------------------------- /Rice_GX/TextureFilters_lq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureFilters_lq2x.h -------------------------------------------------------------------------------- /Rice_GX/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureManager.cpp -------------------------------------------------------------------------------- /Rice_GX/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/TextureManager.h -------------------------------------------------------------------------------- /Rice_GX/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Timing.h -------------------------------------------------------------------------------- /Rice_GX/UcodeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/UcodeDefs.h -------------------------------------------------------------------------------- /Rice_GX/VertexShaderConstantDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/VertexShaderConstantDef.h -------------------------------------------------------------------------------- /Rice_GX/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Video.cpp -------------------------------------------------------------------------------- /Rice_GX/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/Video.h -------------------------------------------------------------------------------- /Rice_GX/blender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/blender.cpp -------------------------------------------------------------------------------- /Rice_GX/blender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/blender.h -------------------------------------------------------------------------------- /Rice_GX/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/gl.h -------------------------------------------------------------------------------- /Rice_GX/glATI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/glATI.h -------------------------------------------------------------------------------- /Rice_GX/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/glext.h -------------------------------------------------------------------------------- /Rice_GX/gui_gtk2/main_gtk2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/gui_gtk2/main_gtk2.cpp -------------------------------------------------------------------------------- /Rice_GX/gui_gtk2/messagebox_gtk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/gui_gtk2/messagebox_gtk2.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGDLL.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGImage.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGImage.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGLibPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGLibPNG.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGUtils.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/BMGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/BMGUtils.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/bmp.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/inffixed.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/jpegrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/jpegrw.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/png.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/png.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngconf.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngerror.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngget.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngmem.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngread.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngrio.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngrtran.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngrutil.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngrw.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngrw.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngset.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngtrans.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngwio.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngwrite.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngwtran.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/pngwutil.c -------------------------------------------------------------------------------- /Rice_GX/liblinux/tiffrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/tiffrw.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/zconf.h -------------------------------------------------------------------------------- /Rice_GX/liblinux/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/liblinux/zlib.h -------------------------------------------------------------------------------- /Rice_GX/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/math.cpp -------------------------------------------------------------------------------- /Rice_GX/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/math.h -------------------------------------------------------------------------------- /Rice_GX/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/messagebox.h -------------------------------------------------------------------------------- /Rice_GX/messagebox_nogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/messagebox_nogui.cpp -------------------------------------------------------------------------------- /Rice_GX/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/stdafx.h -------------------------------------------------------------------------------- /Rice_GX/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/typedefs.h -------------------------------------------------------------------------------- /Rice_GX/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/ucode.h -------------------------------------------------------------------------------- /Rice_GX/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/version.h -------------------------------------------------------------------------------- /Rice_GX/winlnxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/Rice_GX/winlnxdefs.h -------------------------------------------------------------------------------- /TextureArchive/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/TextureArchive/Archive.h -------------------------------------------------------------------------------- /TextureArchive/ArchiveReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/TextureArchive/ArchiveReader.cpp -------------------------------------------------------------------------------- /TextureArchive/ArchiveReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/TextureArchive/ArchiveReader.h -------------------------------------------------------------------------------- /TextureArchive/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/TextureArchive/Endian.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/config.h -------------------------------------------------------------------------------- /debugger/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/ChangeLog -------------------------------------------------------------------------------- /debugger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/README -------------------------------------------------------------------------------- /debugger/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/TODO -------------------------------------------------------------------------------- /debugger/breakpoints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/breakpoints.c -------------------------------------------------------------------------------- /debugger/breakpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/breakpoints.h -------------------------------------------------------------------------------- /debugger/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/debugger.c -------------------------------------------------------------------------------- /debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/debugger.h -------------------------------------------------------------------------------- /debugger/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/decoder.c -------------------------------------------------------------------------------- /debugger/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/decoder.h -------------------------------------------------------------------------------- /debugger/desasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/desasm.c -------------------------------------------------------------------------------- /debugger/desasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/desasm.h -------------------------------------------------------------------------------- /debugger/regAI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regAI.c -------------------------------------------------------------------------------- /debugger/regAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regAI.h -------------------------------------------------------------------------------- /debugger/regCop0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regCop0.c -------------------------------------------------------------------------------- /debugger/regCop0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regCop0.h -------------------------------------------------------------------------------- /debugger/regCop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regCop1.c -------------------------------------------------------------------------------- /debugger/regCop1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regCop1.h -------------------------------------------------------------------------------- /debugger/regGPR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regGPR.c -------------------------------------------------------------------------------- /debugger/regGPR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regGPR.h -------------------------------------------------------------------------------- /debugger/regPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regPI.c -------------------------------------------------------------------------------- /debugger/regPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regPI.h -------------------------------------------------------------------------------- /debugger/regRI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regRI.c -------------------------------------------------------------------------------- /debugger/regRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regRI.h -------------------------------------------------------------------------------- /debugger/regSI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regSI.c -------------------------------------------------------------------------------- /debugger/regSI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regSI.h -------------------------------------------------------------------------------- /debugger/regSpecial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regSpecial.c -------------------------------------------------------------------------------- /debugger/regSpecial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regSpecial.h -------------------------------------------------------------------------------- /debugger/regTLB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regTLB.c -------------------------------------------------------------------------------- /debugger/regTLB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regTLB.h -------------------------------------------------------------------------------- /debugger/regVI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regVI.c -------------------------------------------------------------------------------- /debugger/regVI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/regVI.h -------------------------------------------------------------------------------- /debugger/registers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/registers.c -------------------------------------------------------------------------------- /debugger/registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/registers.h -------------------------------------------------------------------------------- /debugger/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/types.h -------------------------------------------------------------------------------- /debugger/ui_clist_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/ui_clist_edit.c -------------------------------------------------------------------------------- /debugger/ui_clist_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/debugger/ui_clist_edit.h -------------------------------------------------------------------------------- /doc/HiRezTexture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/doc/HiRezTexture.txt -------------------------------------------------------------------------------- /doc/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/doc/compile.sh -------------------------------------------------------------------------------- /doc/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/doc/logo.eps -------------------------------------------------------------------------------- /doc/readme.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/doc/readme.latex -------------------------------------------------------------------------------- /doc/readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/doc/readme.pdf -------------------------------------------------------------------------------- /fileBrowser/HW64/banner.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/banner.bin -------------------------------------------------------------------------------- /fileBrowser/HW64/cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/cert -------------------------------------------------------------------------------- /fileBrowser/HW64/customTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/customTitle.h -------------------------------------------------------------------------------- /fileBrowser/HW64/customTitle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/customTitle.s -------------------------------------------------------------------------------- /fileBrowser/HW64/hw64.tik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/hw64.tik -------------------------------------------------------------------------------- /fileBrowser/HW64/hw64.tmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/HW64/hw64.tmd -------------------------------------------------------------------------------- /fileBrowser/drivecodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/drivecodes.h -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-CARD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-CARD.c -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-CARD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-CARD.h -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-DVD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-DVD.c -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-DVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-DVD.h -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-WiiFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-WiiFS.c -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-WiiFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-WiiFS.h -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-libfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-libfat.c -------------------------------------------------------------------------------- /fileBrowser/fileBrowser-libfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser-libfat.h -------------------------------------------------------------------------------- /fileBrowser/fileBrowser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser.c -------------------------------------------------------------------------------- /fileBrowser/fileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/fileBrowser.h -------------------------------------------------------------------------------- /fileBrowser/gc_dvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/gc_dvd.c -------------------------------------------------------------------------------- /fileBrowser/gc_dvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/gc_dvd.h -------------------------------------------------------------------------------- /fileBrowser/imagedata/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/imagedata/Thumbs.db -------------------------------------------------------------------------------- /fileBrowser/imagedata/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/imagedata/icon.png -------------------------------------------------------------------------------- /fileBrowser/imagedata/mupenIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/fileBrowser/imagedata/mupenIcon.h -------------------------------------------------------------------------------- /gc_audio/AudioPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_audio/AudioPlugin.h -------------------------------------------------------------------------------- /gc_audio/Audio_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_audio/Audio_#1.1.h -------------------------------------------------------------------------------- /gc_audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_audio/audio.c -------------------------------------------------------------------------------- /gc_input/Controller_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/Controller_#1.1.h -------------------------------------------------------------------------------- /gc_input/InputPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/InputPlugin.h -------------------------------------------------------------------------------- /gc_input/PakIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/PakIO.h -------------------------------------------------------------------------------- /gc_input/controller-Classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/controller-Classic.c -------------------------------------------------------------------------------- /gc_input/controller-DRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/controller-DRC.c -------------------------------------------------------------------------------- /gc_input/controller-GC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/controller-GC.c -------------------------------------------------------------------------------- /gc_input/controller-WiimoteNunchuk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/controller-WiimoteNunchuk.c -------------------------------------------------------------------------------- /gc_input/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/controller.h -------------------------------------------------------------------------------- /gc_input/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_input/input.c -------------------------------------------------------------------------------- /gc_memory/ARAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/ARAM.h -------------------------------------------------------------------------------- /gc_memory/MEM2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/MEM2.h -------------------------------------------------------------------------------- /gc_memory/Saves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/Saves.h -------------------------------------------------------------------------------- /gc_memory/TLB-Cache-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/TLB-Cache-hash.c -------------------------------------------------------------------------------- /gc_memory/TLB-Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/TLB-Cache.c -------------------------------------------------------------------------------- /gc_memory/TLB-Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/TLB-Cache.h -------------------------------------------------------------------------------- /gc_memory/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/dma.c -------------------------------------------------------------------------------- /gc_memory/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/dma.h -------------------------------------------------------------------------------- /gc_memory/flashram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/flashram.c -------------------------------------------------------------------------------- /gc_memory/flashram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/flashram.h -------------------------------------------------------------------------------- /gc_memory/mcbanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/mcbanner.h -------------------------------------------------------------------------------- /gc_memory/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/memory.c -------------------------------------------------------------------------------- /gc_memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/memory.h -------------------------------------------------------------------------------- /gc_memory/n64_cic_nus_6105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/n64_cic_nus_6105.c -------------------------------------------------------------------------------- /gc_memory/n64_cic_nus_6105.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/n64_cic_nus_6105.h -------------------------------------------------------------------------------- /gc_memory/pif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/pif.c -------------------------------------------------------------------------------- /gc_memory/pif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/pif.h -------------------------------------------------------------------------------- /gc_memory/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/tlb.c -------------------------------------------------------------------------------- /gc_memory/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gc_memory/tlb.h -------------------------------------------------------------------------------- /glN64_GX/2xSAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/2xSAI.cpp -------------------------------------------------------------------------------- /glN64_GX/2xSAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/2xSAI.h -------------------------------------------------------------------------------- /glN64_GX/3DMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/3DMath.h -------------------------------------------------------------------------------- /glN64_GX/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/CRC.cpp -------------------------------------------------------------------------------- /glN64_GX/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/CRC.h -------------------------------------------------------------------------------- /glN64_GX/Combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Combiner.cpp -------------------------------------------------------------------------------- /glN64_GX/Combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Combiner.h -------------------------------------------------------------------------------- /glN64_GX/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Config.h -------------------------------------------------------------------------------- /glN64_GX/Config_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Config_linux.cpp -------------------------------------------------------------------------------- /glN64_GX/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Debug.h -------------------------------------------------------------------------------- /glN64_GX/DepthBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/DepthBuffer.cpp -------------------------------------------------------------------------------- /glN64_GX/DepthBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/DepthBuffer.h -------------------------------------------------------------------------------- /glN64_GX/F3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3D.cpp -------------------------------------------------------------------------------- /glN64_GX/F3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3D.h -------------------------------------------------------------------------------- /glN64_GX/F3DCBFD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DCBFD.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DCBFD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DCBFD.h -------------------------------------------------------------------------------- /glN64_GX/F3DDKR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DDKR.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DDKR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DDKR.h -------------------------------------------------------------------------------- /glN64_GX/F3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DEX.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DEX.h -------------------------------------------------------------------------------- /glN64_GX/F3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DEX2.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DEX2.h -------------------------------------------------------------------------------- /glN64_GX/F3DPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DPD.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DPD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DPD.h -------------------------------------------------------------------------------- /glN64_GX/F3DWRUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DWRUS.cpp -------------------------------------------------------------------------------- /glN64_GX/F3DWRUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/F3DWRUS.h -------------------------------------------------------------------------------- /glN64_GX/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/FrameBuffer.cpp -------------------------------------------------------------------------------- /glN64_GX/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/FrameBuffer.h -------------------------------------------------------------------------------- /glN64_GX/GBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/GBI.cpp -------------------------------------------------------------------------------- /glN64_GX/GBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/GBI.h -------------------------------------------------------------------------------- /glN64_GX/GFXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/GFXPlugin.h -------------------------------------------------------------------------------- /glN64_GX/L3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3D.cpp -------------------------------------------------------------------------------- /glN64_GX/L3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3D.h -------------------------------------------------------------------------------- /glN64_GX/L3DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3DEX.cpp -------------------------------------------------------------------------------- /glN64_GX/L3DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3DEX.h -------------------------------------------------------------------------------- /glN64_GX/L3DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3DEX2.cpp -------------------------------------------------------------------------------- /glN64_GX/L3DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/L3DEX2.h -------------------------------------------------------------------------------- /glN64_GX/N64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/N64.cpp -------------------------------------------------------------------------------- /glN64_GX/N64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/N64.h -------------------------------------------------------------------------------- /glN64_GX/NV_register_combiners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/NV_register_combiners.cpp -------------------------------------------------------------------------------- /glN64_GX/NV_register_combiners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/NV_register_combiners.h -------------------------------------------------------------------------------- /glN64_GX/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/OpenGL.cpp -------------------------------------------------------------------------------- /glN64_GX/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/OpenGL.h -------------------------------------------------------------------------------- /glN64_GX/RDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/RDP.cpp -------------------------------------------------------------------------------- /glN64_GX/RDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/RDP.h -------------------------------------------------------------------------------- /glN64_GX/RSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/RSP.cpp -------------------------------------------------------------------------------- /glN64_GX/RSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/RSP.h -------------------------------------------------------------------------------- /glN64_GX/S2DEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/S2DEX.cpp -------------------------------------------------------------------------------- /glN64_GX/S2DEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/S2DEX.h -------------------------------------------------------------------------------- /glN64_GX/S2DEX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/S2DEX2.cpp -------------------------------------------------------------------------------- /glN64_GX/S2DEX2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/S2DEX2.h -------------------------------------------------------------------------------- /glN64_GX/TEV_combiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/TEV_combiner.cpp -------------------------------------------------------------------------------- /glN64_GX/TEV_combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/TEV_combiner.h -------------------------------------------------------------------------------- /glN64_GX/Textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Textures.cpp -------------------------------------------------------------------------------- /glN64_GX/Textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Textures.h -------------------------------------------------------------------------------- /glN64_GX/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Types.h -------------------------------------------------------------------------------- /glN64_GX/VI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/VI.cpp -------------------------------------------------------------------------------- /glN64_GX/VI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/VI.h -------------------------------------------------------------------------------- /glN64_GX/Zilmar GFX 1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/Zilmar GFX 1.3.h -------------------------------------------------------------------------------- /glN64_GX/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/convert.h -------------------------------------------------------------------------------- /glN64_GX/gDP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/gDP.cpp -------------------------------------------------------------------------------- /glN64_GX/gDP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/gDP.h -------------------------------------------------------------------------------- /glN64_GX/gSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/gSP.cpp -------------------------------------------------------------------------------- /glN64_GX/gSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/gSP.h -------------------------------------------------------------------------------- /glN64_GX/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/gl.h -------------------------------------------------------------------------------- /glN64_GX/glATI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/glATI.h -------------------------------------------------------------------------------- /glN64_GX/glN64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/glN64.cpp -------------------------------------------------------------------------------- /glN64_GX/glN64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/glN64.h -------------------------------------------------------------------------------- /glN64_GX/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/glext.h -------------------------------------------------------------------------------- /glN64_GX/texture_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/texture_env.cpp -------------------------------------------------------------------------------- /glN64_GX/texture_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/texture_env.h -------------------------------------------------------------------------------- /glN64_GX/texture_env_combine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/texture_env_combine.cpp -------------------------------------------------------------------------------- /glN64_GX/texture_env_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/glN64_GX/texture_env_combine.h -------------------------------------------------------------------------------- /gui/ARIAL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/ARIAL.H -------------------------------------------------------------------------------- /gui/DEBUG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/DEBUG.c -------------------------------------------------------------------------------- /gui/DEBUG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/DEBUG.h -------------------------------------------------------------------------------- /gui/GUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/GUI.c -------------------------------------------------------------------------------- /gui/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/GUI.h -------------------------------------------------------------------------------- /gui/TEXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/TEXT.c -------------------------------------------------------------------------------- /gui/TEXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/TEXT.h -------------------------------------------------------------------------------- /gui/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/background.tex -------------------------------------------------------------------------------- /gui/background.tlut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/background.tlut -------------------------------------------------------------------------------- /gui/background_tex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/background_tex.s -------------------------------------------------------------------------------- /gui/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/font.c -------------------------------------------------------------------------------- /gui/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/font.h -------------------------------------------------------------------------------- /gui/gui_GX-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/gui_GX-menu.c -------------------------------------------------------------------------------- /gui/gui_GX-menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/gui_GX-menu.h -------------------------------------------------------------------------------- /gui/gui_GX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/gui_GX.c -------------------------------------------------------------------------------- /gui/gui_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/gui_GX.h -------------------------------------------------------------------------------- /gui/logo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/logo.tex -------------------------------------------------------------------------------- /gui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/menu.c -------------------------------------------------------------------------------- /gui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/menu.h -------------------------------------------------------------------------------- /gui/menuFileBrowser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/menuFileBrowser.c -------------------------------------------------------------------------------- /gui/menuFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/gui/menuFileBrowser.h -------------------------------------------------------------------------------- /libgui/Box3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Box3D.cpp -------------------------------------------------------------------------------- /libgui/Box3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Box3D.h -------------------------------------------------------------------------------- /libgui/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Button.cpp -------------------------------------------------------------------------------- /libgui/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Button.h -------------------------------------------------------------------------------- /libgui/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Component.cpp -------------------------------------------------------------------------------- /libgui/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Component.h -------------------------------------------------------------------------------- /libgui/CursorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/CursorManager.cpp -------------------------------------------------------------------------------- /libgui/CursorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/CursorManager.h -------------------------------------------------------------------------------- /libgui/FocusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/FocusManager.cpp -------------------------------------------------------------------------------- /libgui/FocusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/FocusManager.h -------------------------------------------------------------------------------- /libgui/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Frame.cpp -------------------------------------------------------------------------------- /libgui/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Frame.h -------------------------------------------------------------------------------- /libgui/GraphicsGX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/GraphicsGX.cpp -------------------------------------------------------------------------------- /libgui/GraphicsGX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/GraphicsGX.h -------------------------------------------------------------------------------- /libgui/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Gui.cpp -------------------------------------------------------------------------------- /libgui/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Gui.h -------------------------------------------------------------------------------- /libgui/GuiResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/GuiResources.cpp -------------------------------------------------------------------------------- /libgui/GuiResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/GuiResources.h -------------------------------------------------------------------------------- /libgui/GuiTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/GuiTypes.h -------------------------------------------------------------------------------- /libgui/IPLFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/IPLFont.cpp -------------------------------------------------------------------------------- /libgui/IPLFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/IPLFont.h -------------------------------------------------------------------------------- /libgui/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Image.cpp -------------------------------------------------------------------------------- /libgui/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Image.h -------------------------------------------------------------------------------- /libgui/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/InputManager.cpp -------------------------------------------------------------------------------- /libgui/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/InputManager.h -------------------------------------------------------------------------------- /libgui/InputStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/InputStatusBar.cpp -------------------------------------------------------------------------------- /libgui/InputStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/InputStatusBar.h -------------------------------------------------------------------------------- /libgui/LoadingBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/LoadingBar.cpp -------------------------------------------------------------------------------- /libgui/LoadingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/LoadingBar.h -------------------------------------------------------------------------------- /libgui/Logo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Logo.cpp -------------------------------------------------------------------------------- /libgui/Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/Logo.h -------------------------------------------------------------------------------- /libgui/MainInfoBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MainInfoBar.cpp -------------------------------------------------------------------------------- /libgui/MainInfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MainInfoBar.h -------------------------------------------------------------------------------- /libgui/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MessageBox.cpp -------------------------------------------------------------------------------- /libgui/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MessageBox.h -------------------------------------------------------------------------------- /libgui/MiniInfoBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MiniInfoBar.cpp -------------------------------------------------------------------------------- /libgui/MiniInfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/MiniInfoBar.h -------------------------------------------------------------------------------- /libgui/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/TextBox.cpp -------------------------------------------------------------------------------- /libgui/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/TextBox.h -------------------------------------------------------------------------------- /libgui/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources.h -------------------------------------------------------------------------------- /libgui/resources.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources.s -------------------------------------------------------------------------------- /libgui/resources/Button.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/Button.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonA.tlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonA.tlt -------------------------------------------------------------------------------- /libgui/resources/ButtonA.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonA.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonAFoc.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonAFoc.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonASelOff.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonASelOff.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonASelOffFoc.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonASelOffFoc.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonASelOn.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonASelOn.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonASelOnFoc.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonASelOnFoc.tx -------------------------------------------------------------------------------- /libgui/resources/ButtonFocus.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/ButtonFocus.tx -------------------------------------------------------------------------------- /libgui/resources/CursorGrab.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/CursorGrab.tx -------------------------------------------------------------------------------- /libgui/resources/CursorPoint.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/libgui/resources/CursorPoint.tx -------------------------------------------------------------------------------- /logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/logo.xpm -------------------------------------------------------------------------------- /main/Audio_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/Audio_#1.1.h -------------------------------------------------------------------------------- /main/Controller_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/Controller_#1.1.h -------------------------------------------------------------------------------- /main/Gfx_#1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/Gfx_#1.3.h -------------------------------------------------------------------------------- /main/KillWiimote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/KillWiimote.c -------------------------------------------------------------------------------- /main/ROM-Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/ROM-Cache.c -------------------------------------------------------------------------------- /main/ROM-Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/ROM-Cache.h -------------------------------------------------------------------------------- /main/Rsp_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/Rsp_#1.1.h -------------------------------------------------------------------------------- /main/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/adler32.c -------------------------------------------------------------------------------- /main/boxart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/boxart.c -------------------------------------------------------------------------------- /main/boxart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/boxart.h -------------------------------------------------------------------------------- /main/boxart_none.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/boxart_none.tex -------------------------------------------------------------------------------- /main/boxart_resource.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/boxart_resource.s -------------------------------------------------------------------------------- /main/gamehacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/gamehacks.c -------------------------------------------------------------------------------- /main/gamehacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/gamehacks.h -------------------------------------------------------------------------------- /main/gczip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/gczip.c -------------------------------------------------------------------------------- /main/gczip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/gczip.h -------------------------------------------------------------------------------- /main/guifuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/guifuncs.h -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/main.h -------------------------------------------------------------------------------- /main/main_gc-menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/main_gc-menu.c -------------------------------------------------------------------------------- /main/main_gc-menu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/main_gc-menu2.cpp -------------------------------------------------------------------------------- /main/main_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/main_gc.c -------------------------------------------------------------------------------- /main/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/md5.c -------------------------------------------------------------------------------- /main/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/md5.h -------------------------------------------------------------------------------- /main/mupenIniApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/mupenIniApi.c -------------------------------------------------------------------------------- /main/mupenIniApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/mupenIniApi.h -------------------------------------------------------------------------------- /main/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/plugin.c -------------------------------------------------------------------------------- /main/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/plugin.h -------------------------------------------------------------------------------- /main/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/rom.h -------------------------------------------------------------------------------- /main/rom_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/rom_gc.c -------------------------------------------------------------------------------- /main/savestates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/savestates.h -------------------------------------------------------------------------------- /main/savestates_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/savestates_gc.c -------------------------------------------------------------------------------- /main/textFileBrowser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/textFileBrowser.c -------------------------------------------------------------------------------- /main/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/timers.c -------------------------------------------------------------------------------- /main/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/timers.h -------------------------------------------------------------------------------- /main/wii64config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/wii64config.h -------------------------------------------------------------------------------- /main/winlnxdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/winlnxdefs.h -------------------------------------------------------------------------------- /main/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/xxhash.c -------------------------------------------------------------------------------- /main/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/main/xxhash.h -------------------------------------------------------------------------------- /menu/ConfigureButtonsFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigureButtonsFrame.cpp -------------------------------------------------------------------------------- /menu/ConfigureButtonsFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigureButtonsFrame.h -------------------------------------------------------------------------------- /menu/ConfigureInputFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigureInputFrame.cpp -------------------------------------------------------------------------------- /menu/ConfigureInputFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigureInputFrame.h -------------------------------------------------------------------------------- /menu/ConfigurePaksFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigurePaksFrame.cpp -------------------------------------------------------------------------------- /menu/ConfigurePaksFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/ConfigurePaksFrame.h -------------------------------------------------------------------------------- /menu/CurrentRomFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/CurrentRomFrame.cpp -------------------------------------------------------------------------------- /menu/CurrentRomFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/CurrentRomFrame.h -------------------------------------------------------------------------------- /menu/FileBrowserFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/FileBrowserFrame.cpp -------------------------------------------------------------------------------- /menu/FileBrowserFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/FileBrowserFrame.h -------------------------------------------------------------------------------- /menu/LoadRomFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/LoadRomFrame.cpp -------------------------------------------------------------------------------- /menu/LoadRomFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/LoadRomFrame.h -------------------------------------------------------------------------------- /menu/LoadSaveFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/LoadSaveFrame.cpp -------------------------------------------------------------------------------- /menu/LoadSaveFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/LoadSaveFrame.h -------------------------------------------------------------------------------- /menu/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MainFrame.cpp -------------------------------------------------------------------------------- /menu/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MainFrame.h -------------------------------------------------------------------------------- /menu/MenuContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MenuContext.cpp -------------------------------------------------------------------------------- /menu/MenuContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MenuContext.h -------------------------------------------------------------------------------- /menu/MenuResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MenuResources.h -------------------------------------------------------------------------------- /menu/MenuResources.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MenuResources.s -------------------------------------------------------------------------------- /menu/MenuTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MenuTypes.h -------------------------------------------------------------------------------- /menu/MiniMenuFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MiniMenuFrame.cpp -------------------------------------------------------------------------------- /menu/MiniMenuFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/MiniMenuFrame.h -------------------------------------------------------------------------------- /menu/SaveGameFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SaveGameFrame.cpp -------------------------------------------------------------------------------- /menu/SaveGameFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SaveGameFrame.h -------------------------------------------------------------------------------- /menu/SelectCPUFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SelectCPUFrame.cpp -------------------------------------------------------------------------------- /menu/SelectCPUFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SelectCPUFrame.h -------------------------------------------------------------------------------- /menu/SelectRomFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SelectRomFrame.cpp -------------------------------------------------------------------------------- /menu/SelectRomFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SelectRomFrame.h -------------------------------------------------------------------------------- /menu/SettingsFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SettingsFrame.cpp -------------------------------------------------------------------------------- /menu/SettingsFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/SettingsFrame.h -------------------------------------------------------------------------------- /menu/resources/Loading.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/Loading.tx -------------------------------------------------------------------------------- /menu/resources/bg.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/bg.tx -------------------------------------------------------------------------------- /menu/resources/cntrlClassic.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlClassic.tx -------------------------------------------------------------------------------- /menu/resources/cntrlEmpty.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlEmpty.tx -------------------------------------------------------------------------------- /menu/resources/cntrlGC.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlGC.tx -------------------------------------------------------------------------------- /menu/resources/cntrlWM.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlWM.tx -------------------------------------------------------------------------------- /menu/resources/cntrlWNC.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlWNC.tx -------------------------------------------------------------------------------- /menu/resources/cntrlWUPro.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cntrlWUPro.tx -------------------------------------------------------------------------------- /menu/resources/cube64.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/cube64.tx -------------------------------------------------------------------------------- /menu/resources/n64Cntrl.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/n64Cntrl.tx -------------------------------------------------------------------------------- /menu/resources/wii64.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/menu/resources/wii64.tx -------------------------------------------------------------------------------- /mupen64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64.ini -------------------------------------------------------------------------------- /mupen64_soft_gfx/Gfx_#1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/Gfx_#1.3.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/SoftGFXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/SoftGFXPlugin.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/bl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/bl.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/bl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/bl.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/cc.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/cc.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/color.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/global.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/main.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/matrix.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/rdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rdp.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rdp.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rs.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/rs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rs.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/rsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rsp.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/rsp.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/tf.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/tf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/tf.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/tx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/tx.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/tx.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/vektor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vektor.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi_GX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi_GX.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi_GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi_GX.h -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi_SDL.cpp -------------------------------------------------------------------------------- /mupen64_soft_gfx/vi_SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/mupen64_soft_gfx/vi_SDL.h -------------------------------------------------------------------------------- /ogc_patches/wiiupro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/ogc_patches/wiiupro.patch -------------------------------------------------------------------------------- /ogc_patches/wpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/ogc_patches/wpad.c -------------------------------------------------------------------------------- /ogc_patches/wpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/ogc_patches/wpad.h -------------------------------------------------------------------------------- /r4300/Invalid_Code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/Invalid_Code.c -------------------------------------------------------------------------------- /r4300/Invalid_Code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/Invalid_Code.h -------------------------------------------------------------------------------- /r4300/Recomp-Cache-Heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/Recomp-Cache-Heap.c -------------------------------------------------------------------------------- /r4300/Recomp-Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/Recomp-Cache.c -------------------------------------------------------------------------------- /r4300/Recomp-Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/Recomp-Cache.h -------------------------------------------------------------------------------- /r4300/compare_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/compare_core.c -------------------------------------------------------------------------------- /r4300/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/exception.c -------------------------------------------------------------------------------- /r4300/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/exception.h -------------------------------------------------------------------------------- /r4300/interupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/interupt.c -------------------------------------------------------------------------------- /r4300/interupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/interupt.h -------------------------------------------------------------------------------- /r4300/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/macros.h -------------------------------------------------------------------------------- /r4300/ppc/FuncTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/FuncTree.c -------------------------------------------------------------------------------- /r4300/ppc/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Interpreter.h -------------------------------------------------------------------------------- /r4300/ppc/MIPS-to-PPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/MIPS-to-PPC.c -------------------------------------------------------------------------------- /r4300/ppc/MIPS-to-PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/MIPS-to-PPC.h -------------------------------------------------------------------------------- /r4300/ppc/MIPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/MIPS.h -------------------------------------------------------------------------------- /r4300/ppc/PowerPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/PowerPC.h -------------------------------------------------------------------------------- /r4300/ppc/Recompile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Recompile.c -------------------------------------------------------------------------------- /r4300/ppc/Recompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Recompile.h -------------------------------------------------------------------------------- /r4300/ppc/Register-Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Register-Cache.c -------------------------------------------------------------------------------- /r4300/ppc/Register-Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Register-Cache.h -------------------------------------------------------------------------------- /r4300/ppc/Wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Wrappers.c -------------------------------------------------------------------------------- /r4300/ppc/Wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/ppc/Wrappers.h -------------------------------------------------------------------------------- /r4300/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/profile.c -------------------------------------------------------------------------------- /r4300/pure_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/pure_interp.c -------------------------------------------------------------------------------- /r4300/r4300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/r4300.c -------------------------------------------------------------------------------- /r4300/r4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/r4300.h -------------------------------------------------------------------------------- /r4300/recomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/recomp.c -------------------------------------------------------------------------------- /r4300/recomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/r4300/recomp.h -------------------------------------------------------------------------------- /release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/README -------------------------------------------------------------------------------- /release/apps/wii64 Rice/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/apps/wii64 Rice/icon.png -------------------------------------------------------------------------------- /release/apps/wii64 Rice/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/apps/wii64 Rice/meta.xml -------------------------------------------------------------------------------- /release/apps/wii64/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/apps/wii64/icon.png -------------------------------------------------------------------------------- /release/apps/wii64/meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/apps/wii64/meta.xml -------------------------------------------------------------------------------- /release/wii64/RiceVideoLinux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/release/wii64/RiceVideoLinux.ini -------------------------------------------------------------------------------- /rsp_hle-ppc/Audio_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/Audio_#1.1.h -------------------------------------------------------------------------------- /rsp_hle-ppc/RSPPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/RSPPlugin.h -------------------------------------------------------------------------------- /rsp_hle-ppc/Rsp_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/Rsp_#1.1.h -------------------------------------------------------------------------------- /rsp_hle-ppc/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/disasm.c -------------------------------------------------------------------------------- /rsp_hle-ppc/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/hle.h -------------------------------------------------------------------------------- /rsp_hle-ppc/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/jpeg.c -------------------------------------------------------------------------------- /rsp_hle-ppc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/main.c -------------------------------------------------------------------------------- /rsp_hle-ppc/ucode1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/ucode1.c -------------------------------------------------------------------------------- /rsp_hle-ppc/ucode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/ucode2.c -------------------------------------------------------------------------------- /rsp_hle-ppc/ucode3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/ucode3.c -------------------------------------------------------------------------------- /rsp_hle-ppc/wintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle-ppc/wintypes.h -------------------------------------------------------------------------------- /rsp_hle/Audio_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/Audio_#1.1.h -------------------------------------------------------------------------------- /rsp_hle/RSPPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/RSPPlugin.h -------------------------------------------------------------------------------- /rsp_hle/Rsp_#1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/Rsp_#1.1.h -------------------------------------------------------------------------------- /rsp_hle/alist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/alist.c -------------------------------------------------------------------------------- /rsp_hle/alist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/alist.h -------------------------------------------------------------------------------- /rsp_hle/alist_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/alist_audio.c -------------------------------------------------------------------------------- /rsp_hle/alist_naudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/alist_naudio.c -------------------------------------------------------------------------------- /rsp_hle/alist_nead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/alist_nead.c -------------------------------------------------------------------------------- /rsp_hle/arithmetics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/arithmetics.h -------------------------------------------------------------------------------- /rsp_hle/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/audio.c -------------------------------------------------------------------------------- /rsp_hle/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/audio.h -------------------------------------------------------------------------------- /rsp_hle/cicx105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/cicx105.c -------------------------------------------------------------------------------- /rsp_hle/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/common.h -------------------------------------------------------------------------------- /rsp_hle/disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/disasm.c -------------------------------------------------------------------------------- /rsp_hle/hle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/hle.c -------------------------------------------------------------------------------- /rsp_hle/hle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/hle.h -------------------------------------------------------------------------------- /rsp_hle/hle_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/hle_external.h -------------------------------------------------------------------------------- /rsp_hle/hle_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/hle_internal.h -------------------------------------------------------------------------------- /rsp_hle/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/jpeg.c -------------------------------------------------------------------------------- /rsp_hle/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/main.c -------------------------------------------------------------------------------- /rsp_hle/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/memory.c -------------------------------------------------------------------------------- /rsp_hle/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/memory.h -------------------------------------------------------------------------------- /rsp_hle/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/mp3.c -------------------------------------------------------------------------------- /rsp_hle/musyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/musyx.c -------------------------------------------------------------------------------- /rsp_hle/musyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/musyx.h -------------------------------------------------------------------------------- /rsp_hle/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/plugin.c -------------------------------------------------------------------------------- /rsp_hle/re2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/re2.c -------------------------------------------------------------------------------- /rsp_hle/ucode1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/ucode1.cpp -------------------------------------------------------------------------------- /rsp_hle/ucode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/ucode2.cpp -------------------------------------------------------------------------------- /rsp_hle/ucode3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/ucode3.cpp -------------------------------------------------------------------------------- /rsp_hle/ucode3mp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/ucode3mp3.cpp -------------------------------------------------------------------------------- /rsp_hle/ucodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/ucodes.h -------------------------------------------------------------------------------- /rsp_hle/wintypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/rsp_hle/wintypes.h -------------------------------------------------------------------------------- /util/boxartpacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/util/boxartpacker.c -------------------------------------------------------------------------------- /vm/dsihandler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/vm/dsihandler.s -------------------------------------------------------------------------------- /vm/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/vm/vm.c -------------------------------------------------------------------------------- /vm/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/vm/vm.h -------------------------------------------------------------------------------- /vm/wii_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/vm/wii_vm.c -------------------------------------------------------------------------------- /vm/wii_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FIX94/Wii64/HEAD/vm/wii_vm.h --------------------------------------------------------------------------------