├── .github ├── FUNDING.yml └── workflows │ ├── macos.yml │ ├── release.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── AppImage.cmake ├── CMakeLists.txt ├── Info.plist ├── LICENSE ├── README.md ├── compat.txt ├── frontend ├── audio.cpp ├── config.hpp ├── elf.cpp ├── elf.hpp ├── handlers.cpp ├── input.cpp ├── iris.cpp ├── iris.hpp ├── notifications.cpp ├── pfd │ └── pfd.h ├── platform.hpp ├── platform │ ├── stub.cpp │ └── windows.cpp ├── res │ └── IconsMaterialSymbols.h ├── settings.cpp ├── stb_image.h ├── stb_image_write.h └── ui │ ├── about.cpp │ ├── bios_setting.cpp │ ├── breakpoints.cpp │ ├── control.cpp │ ├── dma.cpp │ ├── gs.cpp │ ├── intc.cpp │ ├── logs.cpp │ ├── memory.cpp │ ├── memory_card_tool.cpp │ ├── memory_viewer.h │ ├── menubar.cpp │ ├── modules.cpp │ ├── overlay.cpp │ ├── pad.cpp │ ├── settings.cpp │ ├── spu2.cpp │ ├── state.cpp │ ├── statusbar.cpp │ ├── symbols.cpp │ ├── threads.cpp │ └── vu_disassembly.cpp ├── main.cpp ├── res ├── FiraCode-Regular.ttf ├── MaterialSymbolsRounded.ttf ├── Roboto-Black.ttf ├── Roboto-Regular.ttf ├── icon-small.png ├── iris.icns ├── iris.ico ├── iris.png ├── iris.rc ├── iris.res ├── mcd.png ├── pocketstation.png ├── ps1_mcd.png └── ps2_mcd.png ├── shaders ├── decoder.frag ├── encoder.frag ├── flip.frag ├── fragment.glsl ├── fragment.msl ├── fragment.spv ├── smooth.frag ├── vertex.glsl ├── vertex.msl └── vertex.spv └── src ├── dev ├── ds.c ├── ds.h ├── mcd.c ├── mcd.h ├── mtap.c ├── mtap.h ├── ps1_mcd.c └── ps1_mcd.h ├── ee ├── bus.c ├── bus.h ├── bus_decl.h ├── dmac.c ├── dmac.h ├── ee.h ├── ee_cached.cpp ├── ee_def.hpp ├── ee_dis.c ├── ee_dis.h ├── ee_uncached.c ├── ee_uncached.h ├── gif.c ├── gif.h ├── intc.c ├── intc.h ├── syscall.h ├── timers.c ├── timers.h ├── vif.c ├── vif.h ├── vu.c ├── vu.h ├── vu_dis.c └── vu_dis.h ├── elf.h ├── gs ├── gs.c ├── gs.h └── renderer │ ├── null.cpp │ ├── null.hpp │ ├── renderer.cpp │ ├── renderer.hpp │ ├── software.cpp │ ├── software.hpp │ ├── software_thread.cpp │ └── software_thread.hpp ├── iop ├── bus.c ├── bus.h ├── bus_decl.h ├── cdvd.c ├── cdvd.h ├── disc.c ├── disc.h ├── disc │ ├── bin.c │ ├── bin.h │ ├── cue.c │ ├── cue.h │ ├── iso.c │ └── iso.h ├── dma.c ├── dma.h ├── fw.c ├── fw.h ├── hle │ ├── ioman.cpp │ ├── ioman.h │ ├── loadcore.c │ └── loadcore.h ├── intc.c ├── intc.h ├── iop.c ├── iop.h ├── iop_dis.c ├── iop_dis.h ├── iop_export.c ├── iop_export.h ├── rpc.c ├── rpc.h ├── sio2.c ├── sio2.h ├── spu2.c ├── spu2.h ├── timers.c ├── timers.h ├── usb.c └── usb.h ├── ipu ├── chromtable.cpp ├── chromtable.hpp ├── codedblockpattern.cpp ├── codedblockpattern.hpp ├── dct_coeff.cpp ├── dct_coeff.hpp ├── dct_coeff_table0.cpp ├── dct_coeff_table0.hpp ├── dct_coeff_table1.cpp ├── dct_coeff_table1.hpp ├── ipu.cpp ├── ipu.h ├── ipu.hpp ├── ipu_fifo.cpp ├── ipu_fifo.hpp ├── lumtable.cpp ├── lumtable.hpp ├── mac_addr_inc.cpp ├── mac_addr_inc.hpp ├── mac_b_pic.cpp ├── mac_b_pic.hpp ├── mac_i_pic.cpp ├── mac_i_pic.hpp ├── mac_p_pic.cpp ├── mac_p_pic.hpp ├── motioncode.cpp ├── motioncode.hpp ├── vlc_table.cpp └── vlc_table.hpp ├── ps2.c ├── ps2.h ├── ps2_elf.c ├── ps2_elf.h ├── ps2_iso9660.c ├── ps2_iso9660.h ├── queue.c ├── queue.h ├── scheduler.c ├── scheduler.h ├── shared ├── bios.c ├── bios.h ├── ram.c ├── ram.h ├── sbus.c ├── sbus.h ├── sif.c └── sif.h └── u128.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/.gitmodules -------------------------------------------------------------------------------- /AppImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/AppImage.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/README.md -------------------------------------------------------------------------------- /compat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/compat.txt -------------------------------------------------------------------------------- /frontend/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/audio.cpp -------------------------------------------------------------------------------- /frontend/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/config.hpp -------------------------------------------------------------------------------- /frontend/elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/elf.cpp -------------------------------------------------------------------------------- /frontend/elf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/elf.hpp -------------------------------------------------------------------------------- /frontend/handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/handlers.cpp -------------------------------------------------------------------------------- /frontend/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/input.cpp -------------------------------------------------------------------------------- /frontend/iris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/iris.cpp -------------------------------------------------------------------------------- /frontend/iris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/iris.hpp -------------------------------------------------------------------------------- /frontend/notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/notifications.cpp -------------------------------------------------------------------------------- /frontend/pfd/pfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/pfd/pfd.h -------------------------------------------------------------------------------- /frontend/platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/platform.hpp -------------------------------------------------------------------------------- /frontend/platform/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/platform/stub.cpp -------------------------------------------------------------------------------- /frontend/platform/windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/platform/windows.cpp -------------------------------------------------------------------------------- /frontend/res/IconsMaterialSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/res/IconsMaterialSymbols.h -------------------------------------------------------------------------------- /frontend/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/settings.cpp -------------------------------------------------------------------------------- /frontend/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/stb_image.h -------------------------------------------------------------------------------- /frontend/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/stb_image_write.h -------------------------------------------------------------------------------- /frontend/ui/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/about.cpp -------------------------------------------------------------------------------- /frontend/ui/bios_setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/bios_setting.cpp -------------------------------------------------------------------------------- /frontend/ui/breakpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/breakpoints.cpp -------------------------------------------------------------------------------- /frontend/ui/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/control.cpp -------------------------------------------------------------------------------- /frontend/ui/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/dma.cpp -------------------------------------------------------------------------------- /frontend/ui/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/gs.cpp -------------------------------------------------------------------------------- /frontend/ui/intc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/intc.cpp -------------------------------------------------------------------------------- /frontend/ui/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/logs.cpp -------------------------------------------------------------------------------- /frontend/ui/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/memory.cpp -------------------------------------------------------------------------------- /frontend/ui/memory_card_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/memory_card_tool.cpp -------------------------------------------------------------------------------- /frontend/ui/memory_viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/memory_viewer.h -------------------------------------------------------------------------------- /frontend/ui/menubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/menubar.cpp -------------------------------------------------------------------------------- /frontend/ui/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/modules.cpp -------------------------------------------------------------------------------- /frontend/ui/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/overlay.cpp -------------------------------------------------------------------------------- /frontend/ui/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/pad.cpp -------------------------------------------------------------------------------- /frontend/ui/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/settings.cpp -------------------------------------------------------------------------------- /frontend/ui/spu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/spu2.cpp -------------------------------------------------------------------------------- /frontend/ui/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/state.cpp -------------------------------------------------------------------------------- /frontend/ui/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/statusbar.cpp -------------------------------------------------------------------------------- /frontend/ui/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/symbols.cpp -------------------------------------------------------------------------------- /frontend/ui/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/threads.cpp -------------------------------------------------------------------------------- /frontend/ui/vu_disassembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/frontend/ui/vu_disassembly.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/main.cpp -------------------------------------------------------------------------------- /res/FiraCode-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/FiraCode-Regular.ttf -------------------------------------------------------------------------------- /res/MaterialSymbolsRounded.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/MaterialSymbolsRounded.ttf -------------------------------------------------------------------------------- /res/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/Roboto-Black.ttf -------------------------------------------------------------------------------- /res/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/Roboto-Regular.ttf -------------------------------------------------------------------------------- /res/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/icon-small.png -------------------------------------------------------------------------------- /res/iris.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/iris.icns -------------------------------------------------------------------------------- /res/iris.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/iris.ico -------------------------------------------------------------------------------- /res/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/iris.png -------------------------------------------------------------------------------- /res/iris.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/iris.rc -------------------------------------------------------------------------------- /res/iris.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/iris.res -------------------------------------------------------------------------------- /res/mcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/mcd.png -------------------------------------------------------------------------------- /res/pocketstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/pocketstation.png -------------------------------------------------------------------------------- /res/ps1_mcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/ps1_mcd.png -------------------------------------------------------------------------------- /res/ps2_mcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/res/ps2_mcd.png -------------------------------------------------------------------------------- /shaders/decoder.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/decoder.frag -------------------------------------------------------------------------------- /shaders/encoder.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/encoder.frag -------------------------------------------------------------------------------- /shaders/flip.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/flip.frag -------------------------------------------------------------------------------- /shaders/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/fragment.glsl -------------------------------------------------------------------------------- /shaders/fragment.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/fragment.msl -------------------------------------------------------------------------------- /shaders/fragment.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/fragment.spv -------------------------------------------------------------------------------- /shaders/smooth.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/smooth.frag -------------------------------------------------------------------------------- /shaders/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/vertex.glsl -------------------------------------------------------------------------------- /shaders/vertex.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/vertex.msl -------------------------------------------------------------------------------- /shaders/vertex.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/shaders/vertex.spv -------------------------------------------------------------------------------- /src/dev/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/ds.c -------------------------------------------------------------------------------- /src/dev/ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/ds.h -------------------------------------------------------------------------------- /src/dev/mcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/mcd.c -------------------------------------------------------------------------------- /src/dev/mcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/mcd.h -------------------------------------------------------------------------------- /src/dev/mtap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/mtap.c -------------------------------------------------------------------------------- /src/dev/mtap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/mtap.h -------------------------------------------------------------------------------- /src/dev/ps1_mcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/ps1_mcd.c -------------------------------------------------------------------------------- /src/dev/ps1_mcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/dev/ps1_mcd.h -------------------------------------------------------------------------------- /src/ee/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/bus.c -------------------------------------------------------------------------------- /src/ee/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/bus.h -------------------------------------------------------------------------------- /src/ee/bus_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/bus_decl.h -------------------------------------------------------------------------------- /src/ee/dmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/dmac.c -------------------------------------------------------------------------------- /src/ee/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/dmac.h -------------------------------------------------------------------------------- /src/ee/ee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee.h -------------------------------------------------------------------------------- /src/ee/ee_cached.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_cached.cpp -------------------------------------------------------------------------------- /src/ee/ee_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_def.hpp -------------------------------------------------------------------------------- /src/ee/ee_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_dis.c -------------------------------------------------------------------------------- /src/ee/ee_dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_dis.h -------------------------------------------------------------------------------- /src/ee/ee_uncached.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_uncached.c -------------------------------------------------------------------------------- /src/ee/ee_uncached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/ee_uncached.h -------------------------------------------------------------------------------- /src/ee/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/gif.c -------------------------------------------------------------------------------- /src/ee/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/gif.h -------------------------------------------------------------------------------- /src/ee/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/intc.c -------------------------------------------------------------------------------- /src/ee/intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/intc.h -------------------------------------------------------------------------------- /src/ee/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/syscall.h -------------------------------------------------------------------------------- /src/ee/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/timers.c -------------------------------------------------------------------------------- /src/ee/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/timers.h -------------------------------------------------------------------------------- /src/ee/vif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vif.c -------------------------------------------------------------------------------- /src/ee/vif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vif.h -------------------------------------------------------------------------------- /src/ee/vu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vu.c -------------------------------------------------------------------------------- /src/ee/vu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vu.h -------------------------------------------------------------------------------- /src/ee/vu_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vu_dis.c -------------------------------------------------------------------------------- /src/ee/vu_dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ee/vu_dis.h -------------------------------------------------------------------------------- /src/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/elf.h -------------------------------------------------------------------------------- /src/gs/gs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/gs.c -------------------------------------------------------------------------------- /src/gs/gs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/gs.h -------------------------------------------------------------------------------- /src/gs/renderer/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/null.cpp -------------------------------------------------------------------------------- /src/gs/renderer/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/null.hpp -------------------------------------------------------------------------------- /src/gs/renderer/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/renderer.cpp -------------------------------------------------------------------------------- /src/gs/renderer/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/renderer.hpp -------------------------------------------------------------------------------- /src/gs/renderer/software.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/software.cpp -------------------------------------------------------------------------------- /src/gs/renderer/software.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/software.hpp -------------------------------------------------------------------------------- /src/gs/renderer/software_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/software_thread.cpp -------------------------------------------------------------------------------- /src/gs/renderer/software_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/gs/renderer/software_thread.hpp -------------------------------------------------------------------------------- /src/iop/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/bus.c -------------------------------------------------------------------------------- /src/iop/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/bus.h -------------------------------------------------------------------------------- /src/iop/bus_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/bus_decl.h -------------------------------------------------------------------------------- /src/iop/cdvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/cdvd.c -------------------------------------------------------------------------------- /src/iop/cdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/cdvd.h -------------------------------------------------------------------------------- /src/iop/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc.c -------------------------------------------------------------------------------- /src/iop/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc.h -------------------------------------------------------------------------------- /src/iop/disc/bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc/bin.c -------------------------------------------------------------------------------- /src/iop/disc/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc/bin.h -------------------------------------------------------------------------------- /src/iop/disc/cue.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/iop/disc/cue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc/cue.h -------------------------------------------------------------------------------- /src/iop/disc/iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc/iso.c -------------------------------------------------------------------------------- /src/iop/disc/iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/disc/iso.h -------------------------------------------------------------------------------- /src/iop/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/dma.c -------------------------------------------------------------------------------- /src/iop/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/dma.h -------------------------------------------------------------------------------- /src/iop/fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/fw.c -------------------------------------------------------------------------------- /src/iop/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/fw.h -------------------------------------------------------------------------------- /src/iop/hle/ioman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/hle/ioman.cpp -------------------------------------------------------------------------------- /src/iop/hle/ioman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/hle/ioman.h -------------------------------------------------------------------------------- /src/iop/hle/loadcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/hle/loadcore.c -------------------------------------------------------------------------------- /src/iop/hle/loadcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/hle/loadcore.h -------------------------------------------------------------------------------- /src/iop/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/intc.c -------------------------------------------------------------------------------- /src/iop/intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/intc.h -------------------------------------------------------------------------------- /src/iop/iop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop.c -------------------------------------------------------------------------------- /src/iop/iop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop.h -------------------------------------------------------------------------------- /src/iop/iop_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop_dis.c -------------------------------------------------------------------------------- /src/iop/iop_dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop_dis.h -------------------------------------------------------------------------------- /src/iop/iop_export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop_export.c -------------------------------------------------------------------------------- /src/iop/iop_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/iop_export.h -------------------------------------------------------------------------------- /src/iop/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/rpc.c -------------------------------------------------------------------------------- /src/iop/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/rpc.h -------------------------------------------------------------------------------- /src/iop/sio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/sio2.c -------------------------------------------------------------------------------- /src/iop/sio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/sio2.h -------------------------------------------------------------------------------- /src/iop/spu2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/spu2.c -------------------------------------------------------------------------------- /src/iop/spu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/spu2.h -------------------------------------------------------------------------------- /src/iop/timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/timers.c -------------------------------------------------------------------------------- /src/iop/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/timers.h -------------------------------------------------------------------------------- /src/iop/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/usb.c -------------------------------------------------------------------------------- /src/iop/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/iop/usb.h -------------------------------------------------------------------------------- /src/ipu/chromtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/chromtable.cpp -------------------------------------------------------------------------------- /src/ipu/chromtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/chromtable.hpp -------------------------------------------------------------------------------- /src/ipu/codedblockpattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/codedblockpattern.cpp -------------------------------------------------------------------------------- /src/ipu/codedblockpattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/codedblockpattern.hpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff.cpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff.hpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff_table0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff_table0.cpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff_table0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff_table0.hpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff_table1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff_table1.cpp -------------------------------------------------------------------------------- /src/ipu/dct_coeff_table1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/dct_coeff_table1.hpp -------------------------------------------------------------------------------- /src/ipu/ipu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/ipu.cpp -------------------------------------------------------------------------------- /src/ipu/ipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/ipu.h -------------------------------------------------------------------------------- /src/ipu/ipu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/ipu.hpp -------------------------------------------------------------------------------- /src/ipu/ipu_fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/ipu_fifo.cpp -------------------------------------------------------------------------------- /src/ipu/ipu_fifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/ipu_fifo.hpp -------------------------------------------------------------------------------- /src/ipu/lumtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/lumtable.cpp -------------------------------------------------------------------------------- /src/ipu/lumtable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/lumtable.hpp -------------------------------------------------------------------------------- /src/ipu/mac_addr_inc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_addr_inc.cpp -------------------------------------------------------------------------------- /src/ipu/mac_addr_inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_addr_inc.hpp -------------------------------------------------------------------------------- /src/ipu/mac_b_pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_b_pic.cpp -------------------------------------------------------------------------------- /src/ipu/mac_b_pic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_b_pic.hpp -------------------------------------------------------------------------------- /src/ipu/mac_i_pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_i_pic.cpp -------------------------------------------------------------------------------- /src/ipu/mac_i_pic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_i_pic.hpp -------------------------------------------------------------------------------- /src/ipu/mac_p_pic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_p_pic.cpp -------------------------------------------------------------------------------- /src/ipu/mac_p_pic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/mac_p_pic.hpp -------------------------------------------------------------------------------- /src/ipu/motioncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/motioncode.cpp -------------------------------------------------------------------------------- /src/ipu/motioncode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/motioncode.hpp -------------------------------------------------------------------------------- /src/ipu/vlc_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/vlc_table.cpp -------------------------------------------------------------------------------- /src/ipu/vlc_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ipu/vlc_table.hpp -------------------------------------------------------------------------------- /src/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2.c -------------------------------------------------------------------------------- /src/ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2.h -------------------------------------------------------------------------------- /src/ps2_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2_elf.c -------------------------------------------------------------------------------- /src/ps2_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2_elf.h -------------------------------------------------------------------------------- /src/ps2_iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2_iso9660.c -------------------------------------------------------------------------------- /src/ps2_iso9660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/ps2_iso9660.h -------------------------------------------------------------------------------- /src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/queue.c -------------------------------------------------------------------------------- /src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/queue.h -------------------------------------------------------------------------------- /src/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/scheduler.c -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/shared/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/bios.c -------------------------------------------------------------------------------- /src/shared/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/bios.h -------------------------------------------------------------------------------- /src/shared/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/ram.c -------------------------------------------------------------------------------- /src/shared/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/ram.h -------------------------------------------------------------------------------- /src/shared/sbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/sbus.c -------------------------------------------------------------------------------- /src/shared/sbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/sbus.h -------------------------------------------------------------------------------- /src/shared/sif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/sif.c -------------------------------------------------------------------------------- /src/shared/sif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/shared/sif.h -------------------------------------------------------------------------------- /src/u128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allkern/iris/HEAD/src/u128.h --------------------------------------------------------------------------------