├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── benchmark └── bench1.cpp ├── cmake └── PlatformGlob.cmake ├── core ├── CMakeLists.txt ├── bitops.h ├── coresignal.h ├── hostevents.h ├── hostevents_sdl.cpp ├── mathutils.h ├── timermanager.cpp └── timermanager.h ├── cpu └── ppc │ ├── CMakeLists.txt │ ├── poweropcodes.cpp │ ├── ppcdisasm.cpp │ ├── ppcdisasm.h │ ├── ppcemu.h │ ├── ppcexceptions.cpp │ ├── ppcexec.cpp │ ├── ppcfpopcodes.cpp │ ├── ppcmacros.h │ ├── ppcmmu.cpp │ ├── ppcmmu.h │ ├── ppcopcodes.cpp │ └── test │ ├── genppctests.py │ ├── ppcdisasmtest.csv │ ├── ppcfloattest.txt │ ├── ppcfloattests.csv │ ├── ppcinttest.txt │ ├── ppcinttests.csv │ ├── ppctests.cpp │ └── testdisasm.cpp ├── debugger ├── CMakeLists.txt ├── debugger.cpp └── debugger.h ├── devices ├── CMakeLists.txt ├── common │ ├── adb │ │ ├── adbbus.cpp │ │ ├── adbbus.h │ │ ├── adbdevice.cpp │ │ ├── adbdevice.h │ │ ├── adbkeyboard.cpp │ │ ├── adbkeyboard.h │ │ ├── adbmouse.cpp │ │ └── adbmouse.h │ ├── ata │ │ ├── atabasedevice.cpp │ │ ├── atabasedevice.h │ │ ├── atadefs.h │ │ ├── atahd.cpp │ │ ├── atahd.h │ │ ├── atapibasedevice.cpp │ │ ├── atapibasedevice.h │ │ ├── atapicdrom.cpp │ │ ├── atapicdrom.h │ │ ├── idechannel.cpp │ │ └── idechannel.h │ ├── dbdma.cpp │ ├── dbdma.h │ ├── dmacore.h │ ├── hwcomponent.h │ ├── hwinterrupt.h │ ├── i2c │ │ ├── athens.cpp │ │ ├── athens.h │ │ ├── i2c.h │ │ ├── i2cprom.cpp │ │ ├── i2cprom.h │ │ ├── saa7187.cpp │ │ └── saa7187.h │ ├── machineid.h │ ├── mmiodevice.h │ ├── nvram.cpp │ ├── nvram.h │ ├── ofnvram.cpp │ ├── ofnvram.h │ ├── pci │ │ ├── bandit.cpp │ │ ├── bandit.h │ │ ├── dec21154.cpp │ │ ├── dec21154.h │ │ ├── pcibase.cpp │ │ ├── pcibase.h │ │ ├── pcibridge.cpp │ │ ├── pcibridge.h │ │ ├── pcibridgebase.cpp │ │ ├── pcibridgebase.h │ │ ├── pcicardbusbridge.cpp │ │ ├── pcicardbusbridge.h │ │ ├── pcidevice.cpp │ │ ├── pcidevice.h │ │ ├── pcihost.cpp │ │ └── pcihost.h │ ├── scsi │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── sc53c94.cpp │ │ ├── sc53c94.h │ │ ├── scsi.h │ │ ├── scsibus.cpp │ │ ├── scsicdrom.cpp │ │ ├── scsicdrom.h │ │ ├── scsidevice.cpp │ │ ├── scsihd.cpp │ │ └── scsihd.h │ ├── viacuda.cpp │ └── viacuda.h ├── deviceregistry.cpp ├── deviceregistry.h ├── ethernet │ ├── bigmac.cpp │ ├── bigmac.h │ ├── mace.cpp │ └── mace.h ├── floppy │ ├── floppyimg.cpp │ ├── floppyimg.h │ ├── superdrive.cpp │ ├── superdrive.h │ ├── swim3.cpp │ └── swim3.h ├── ioctrl │ ├── amic.cpp │ ├── amic.h │ ├── grandcentral.cpp │ ├── heathrow.cpp │ ├── macio.h │ └── ohare.cpp ├── memctrl │ ├── hammerhead.cpp │ ├── hammerhead.h │ ├── hmc.cpp │ ├── hmc.h │ ├── memctrlbase.cpp │ ├── memctrlbase.h │ ├── mpc106.cpp │ ├── mpc106.h │ ├── platinum.cpp │ ├── platinum.h │ ├── psx.cpp │ ├── psx.h │ └── spdram.h ├── serial │ ├── chario.cpp │ ├── chario.h │ ├── escc.cpp │ └── escc.h ├── sound │ ├── awacs.cpp │ ├── awacs.h │ ├── burgundy.cpp │ ├── burgundy.h │ ├── soundserver.h │ └── soundserver_cubeb.cpp ├── storage │ ├── blockstoragedevice.cpp │ ├── blockstoragedevice.h │ ├── cdromdrive.cpp │ └── cdromdrive.h └── video │ ├── appleramdac.cpp │ ├── appleramdac.h │ ├── atimach64defs.h │ ├── atimach64gx.cpp │ ├── atimach64gx.h │ ├── atirage.cpp │ ├── atirage.h │ ├── control.cpp │ ├── control.h │ ├── display.h │ ├── display_sdl.cpp │ ├── displayid.cpp │ ├── displayid.h │ ├── pdmonboard.cpp │ ├── pdmonboard.h │ ├── rgb514defs.h │ ├── sixty6.cpp │ ├── sixty6.h │ ├── videoctrl.cpp │ └── videoctrl.h ├── dppcicon.ico ├── endianswap.h ├── icon.rc ├── machines ├── CMakeLists.txt ├── machinebase.cpp ├── machinebase.h ├── machinebondi.cpp ├── machinecatalyst.cpp ├── machinefactory.cpp ├── machinefactory.h ├── machinegazelle.cpp ├── machinegossamer.cpp ├── machinepdm.cpp ├── machineproperties.cpp ├── machineproperties.h ├── machinetnt.cpp └── machineyosemite.cpp ├── main.cpp ├── main.h ├── main_sdl.cpp ├── main_sdl.m ├── memaccess.h ├── thirdparty ├── CLI11 │ └── CLI11.hpp └── loguru │ ├── CMakeLists.txt │ ├── loguru.cpp │ └── loguru.hpp ├── utils ├── CMakeLists.txt ├── imgfile.h ├── imgfile_sdl.cpp ├── profiler.cpp └── profiler.h ├── vcpkg.json └── zdocs ├── aboutthis.md ├── adb.md ├── atirage.md ├── awacs.md ├── bmac.md ├── cpu └── powerpc │ ├── mmu.md │ └── mmuemu.md ├── get-inherited-property notes.txt ├── grackle.md ├── heathrow.md ├── machines └── pdmram.md ├── memorymaps.md ├── mesh.md ├── misc.md ├── openfirmware.md ├── powerpc.md └── viacuda.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/bench1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/benchmark/bench1.cpp -------------------------------------------------------------------------------- /cmake/PlatformGlob.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cmake/PlatformGlob.cmake -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/bitops.h -------------------------------------------------------------------------------- /core/coresignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/coresignal.h -------------------------------------------------------------------------------- /core/hostevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/hostevents.h -------------------------------------------------------------------------------- /core/hostevents_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/hostevents_sdl.cpp -------------------------------------------------------------------------------- /core/mathutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/mathutils.h -------------------------------------------------------------------------------- /core/timermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/timermanager.cpp -------------------------------------------------------------------------------- /core/timermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/core/timermanager.h -------------------------------------------------------------------------------- /cpu/ppc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/CMakeLists.txt -------------------------------------------------------------------------------- /cpu/ppc/poweropcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/poweropcodes.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcdisasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcdisasm.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcdisasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcdisasm.h -------------------------------------------------------------------------------- /cpu/ppc/ppcemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcemu.h -------------------------------------------------------------------------------- /cpu/ppc/ppcexceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcexceptions.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcexec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcexec.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcfpopcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcfpopcodes.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcmacros.h -------------------------------------------------------------------------------- /cpu/ppc/ppcmmu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcmmu.cpp -------------------------------------------------------------------------------- /cpu/ppc/ppcmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcmmu.h -------------------------------------------------------------------------------- /cpu/ppc/ppcopcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/ppcopcodes.cpp -------------------------------------------------------------------------------- /cpu/ppc/test/genppctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/genppctests.py -------------------------------------------------------------------------------- /cpu/ppc/test/ppcdisasmtest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppcdisasmtest.csv -------------------------------------------------------------------------------- /cpu/ppc/test/ppcfloattest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppcfloattest.txt -------------------------------------------------------------------------------- /cpu/ppc/test/ppcfloattests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppcfloattests.csv -------------------------------------------------------------------------------- /cpu/ppc/test/ppcinttest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppcinttest.txt -------------------------------------------------------------------------------- /cpu/ppc/test/ppcinttests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppcinttests.csv -------------------------------------------------------------------------------- /cpu/ppc/test/ppctests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/ppctests.cpp -------------------------------------------------------------------------------- /cpu/ppc/test/testdisasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/cpu/ppc/test/testdisasm.cpp -------------------------------------------------------------------------------- /debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/debugger/CMakeLists.txt -------------------------------------------------------------------------------- /debugger/debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/debugger/debugger.cpp -------------------------------------------------------------------------------- /debugger/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/debugger/debugger.h -------------------------------------------------------------------------------- /devices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/CMakeLists.txt -------------------------------------------------------------------------------- /devices/common/adb/adbbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbbus.cpp -------------------------------------------------------------------------------- /devices/common/adb/adbbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbbus.h -------------------------------------------------------------------------------- /devices/common/adb/adbdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbdevice.cpp -------------------------------------------------------------------------------- /devices/common/adb/adbdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbdevice.h -------------------------------------------------------------------------------- /devices/common/adb/adbkeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbkeyboard.cpp -------------------------------------------------------------------------------- /devices/common/adb/adbkeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbkeyboard.h -------------------------------------------------------------------------------- /devices/common/adb/adbmouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbmouse.cpp -------------------------------------------------------------------------------- /devices/common/adb/adbmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/adb/adbmouse.h -------------------------------------------------------------------------------- /devices/common/ata/atabasedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atabasedevice.cpp -------------------------------------------------------------------------------- /devices/common/ata/atabasedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atabasedevice.h -------------------------------------------------------------------------------- /devices/common/ata/atadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atadefs.h -------------------------------------------------------------------------------- /devices/common/ata/atahd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atahd.cpp -------------------------------------------------------------------------------- /devices/common/ata/atahd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atahd.h -------------------------------------------------------------------------------- /devices/common/ata/atapibasedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atapibasedevice.cpp -------------------------------------------------------------------------------- /devices/common/ata/atapibasedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atapibasedevice.h -------------------------------------------------------------------------------- /devices/common/ata/atapicdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atapicdrom.cpp -------------------------------------------------------------------------------- /devices/common/ata/atapicdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/atapicdrom.h -------------------------------------------------------------------------------- /devices/common/ata/idechannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/idechannel.cpp -------------------------------------------------------------------------------- /devices/common/ata/idechannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ata/idechannel.h -------------------------------------------------------------------------------- /devices/common/dbdma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/dbdma.cpp -------------------------------------------------------------------------------- /devices/common/dbdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/dbdma.h -------------------------------------------------------------------------------- /devices/common/dmacore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/dmacore.h -------------------------------------------------------------------------------- /devices/common/hwcomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/hwcomponent.h -------------------------------------------------------------------------------- /devices/common/hwinterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/hwinterrupt.h -------------------------------------------------------------------------------- /devices/common/i2c/athens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/athens.cpp -------------------------------------------------------------------------------- /devices/common/i2c/athens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/athens.h -------------------------------------------------------------------------------- /devices/common/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/i2c.h -------------------------------------------------------------------------------- /devices/common/i2c/i2cprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/i2cprom.cpp -------------------------------------------------------------------------------- /devices/common/i2c/i2cprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/i2cprom.h -------------------------------------------------------------------------------- /devices/common/i2c/saa7187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/saa7187.cpp -------------------------------------------------------------------------------- /devices/common/i2c/saa7187.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/i2c/saa7187.h -------------------------------------------------------------------------------- /devices/common/machineid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/machineid.h -------------------------------------------------------------------------------- /devices/common/mmiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/mmiodevice.h -------------------------------------------------------------------------------- /devices/common/nvram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/nvram.cpp -------------------------------------------------------------------------------- /devices/common/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/nvram.h -------------------------------------------------------------------------------- /devices/common/ofnvram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ofnvram.cpp -------------------------------------------------------------------------------- /devices/common/ofnvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/ofnvram.h -------------------------------------------------------------------------------- /devices/common/pci/bandit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/bandit.cpp -------------------------------------------------------------------------------- /devices/common/pci/bandit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/bandit.h -------------------------------------------------------------------------------- /devices/common/pci/dec21154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/dec21154.cpp -------------------------------------------------------------------------------- /devices/common/pci/dec21154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/dec21154.h -------------------------------------------------------------------------------- /devices/common/pci/pcibase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibase.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcibase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibase.h -------------------------------------------------------------------------------- /devices/common/pci/pcibridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibridge.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcibridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibridge.h -------------------------------------------------------------------------------- /devices/common/pci/pcibridgebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibridgebase.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcibridgebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcibridgebase.h -------------------------------------------------------------------------------- /devices/common/pci/pcicardbusbridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcicardbusbridge.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcicardbusbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcicardbusbridge.h -------------------------------------------------------------------------------- /devices/common/pci/pcidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcidevice.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcidevice.h -------------------------------------------------------------------------------- /devices/common/pci/pcihost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcihost.cpp -------------------------------------------------------------------------------- /devices/common/pci/pcihost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/pci/pcihost.h -------------------------------------------------------------------------------- /devices/common/scsi/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/mesh.cpp -------------------------------------------------------------------------------- /devices/common/scsi/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/mesh.h -------------------------------------------------------------------------------- /devices/common/scsi/sc53c94.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/sc53c94.cpp -------------------------------------------------------------------------------- /devices/common/scsi/sc53c94.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/sc53c94.h -------------------------------------------------------------------------------- /devices/common/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsi.h -------------------------------------------------------------------------------- /devices/common/scsi/scsibus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsibus.cpp -------------------------------------------------------------------------------- /devices/common/scsi/scsicdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsicdrom.cpp -------------------------------------------------------------------------------- /devices/common/scsi/scsicdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsicdrom.h -------------------------------------------------------------------------------- /devices/common/scsi/scsidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsidevice.cpp -------------------------------------------------------------------------------- /devices/common/scsi/scsihd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsihd.cpp -------------------------------------------------------------------------------- /devices/common/scsi/scsihd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/scsi/scsihd.h -------------------------------------------------------------------------------- /devices/common/viacuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/viacuda.cpp -------------------------------------------------------------------------------- /devices/common/viacuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/common/viacuda.h -------------------------------------------------------------------------------- /devices/deviceregistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/deviceregistry.cpp -------------------------------------------------------------------------------- /devices/deviceregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/deviceregistry.h -------------------------------------------------------------------------------- /devices/ethernet/bigmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ethernet/bigmac.cpp -------------------------------------------------------------------------------- /devices/ethernet/bigmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ethernet/bigmac.h -------------------------------------------------------------------------------- /devices/ethernet/mace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ethernet/mace.cpp -------------------------------------------------------------------------------- /devices/ethernet/mace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ethernet/mace.h -------------------------------------------------------------------------------- /devices/floppy/floppyimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/floppyimg.cpp -------------------------------------------------------------------------------- /devices/floppy/floppyimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/floppyimg.h -------------------------------------------------------------------------------- /devices/floppy/superdrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/superdrive.cpp -------------------------------------------------------------------------------- /devices/floppy/superdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/superdrive.h -------------------------------------------------------------------------------- /devices/floppy/swim3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/swim3.cpp -------------------------------------------------------------------------------- /devices/floppy/swim3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/floppy/swim3.h -------------------------------------------------------------------------------- /devices/ioctrl/amic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/amic.cpp -------------------------------------------------------------------------------- /devices/ioctrl/amic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/amic.h -------------------------------------------------------------------------------- /devices/ioctrl/grandcentral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/grandcentral.cpp -------------------------------------------------------------------------------- /devices/ioctrl/heathrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/heathrow.cpp -------------------------------------------------------------------------------- /devices/ioctrl/macio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/macio.h -------------------------------------------------------------------------------- /devices/ioctrl/ohare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/ioctrl/ohare.cpp -------------------------------------------------------------------------------- /devices/memctrl/hammerhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/hammerhead.cpp -------------------------------------------------------------------------------- /devices/memctrl/hammerhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/hammerhead.h -------------------------------------------------------------------------------- /devices/memctrl/hmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/hmc.cpp -------------------------------------------------------------------------------- /devices/memctrl/hmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/hmc.h -------------------------------------------------------------------------------- /devices/memctrl/memctrlbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/memctrlbase.cpp -------------------------------------------------------------------------------- /devices/memctrl/memctrlbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/memctrlbase.h -------------------------------------------------------------------------------- /devices/memctrl/mpc106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/mpc106.cpp -------------------------------------------------------------------------------- /devices/memctrl/mpc106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/mpc106.h -------------------------------------------------------------------------------- /devices/memctrl/platinum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/platinum.cpp -------------------------------------------------------------------------------- /devices/memctrl/platinum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/platinum.h -------------------------------------------------------------------------------- /devices/memctrl/psx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/psx.cpp -------------------------------------------------------------------------------- /devices/memctrl/psx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/psx.h -------------------------------------------------------------------------------- /devices/memctrl/spdram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/memctrl/spdram.h -------------------------------------------------------------------------------- /devices/serial/chario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/serial/chario.cpp -------------------------------------------------------------------------------- /devices/serial/chario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/serial/chario.h -------------------------------------------------------------------------------- /devices/serial/escc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/serial/escc.cpp -------------------------------------------------------------------------------- /devices/serial/escc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/serial/escc.h -------------------------------------------------------------------------------- /devices/sound/awacs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/awacs.cpp -------------------------------------------------------------------------------- /devices/sound/awacs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/awacs.h -------------------------------------------------------------------------------- /devices/sound/burgundy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/burgundy.cpp -------------------------------------------------------------------------------- /devices/sound/burgundy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/burgundy.h -------------------------------------------------------------------------------- /devices/sound/soundserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/soundserver.h -------------------------------------------------------------------------------- /devices/sound/soundserver_cubeb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/sound/soundserver_cubeb.cpp -------------------------------------------------------------------------------- /devices/storage/blockstoragedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/storage/blockstoragedevice.cpp -------------------------------------------------------------------------------- /devices/storage/blockstoragedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/storage/blockstoragedevice.h -------------------------------------------------------------------------------- /devices/storage/cdromdrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/storage/cdromdrive.cpp -------------------------------------------------------------------------------- /devices/storage/cdromdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/storage/cdromdrive.h -------------------------------------------------------------------------------- /devices/video/appleramdac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/appleramdac.cpp -------------------------------------------------------------------------------- /devices/video/appleramdac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/appleramdac.h -------------------------------------------------------------------------------- /devices/video/atimach64defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/atimach64defs.h -------------------------------------------------------------------------------- /devices/video/atimach64gx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/atimach64gx.cpp -------------------------------------------------------------------------------- /devices/video/atimach64gx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/atimach64gx.h -------------------------------------------------------------------------------- /devices/video/atirage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/atirage.cpp -------------------------------------------------------------------------------- /devices/video/atirage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/atirage.h -------------------------------------------------------------------------------- /devices/video/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/control.cpp -------------------------------------------------------------------------------- /devices/video/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/control.h -------------------------------------------------------------------------------- /devices/video/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/display.h -------------------------------------------------------------------------------- /devices/video/display_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/display_sdl.cpp -------------------------------------------------------------------------------- /devices/video/displayid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/displayid.cpp -------------------------------------------------------------------------------- /devices/video/displayid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/displayid.h -------------------------------------------------------------------------------- /devices/video/pdmonboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/pdmonboard.cpp -------------------------------------------------------------------------------- /devices/video/pdmonboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/pdmonboard.h -------------------------------------------------------------------------------- /devices/video/rgb514defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/rgb514defs.h -------------------------------------------------------------------------------- /devices/video/sixty6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/sixty6.cpp -------------------------------------------------------------------------------- /devices/video/sixty6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/sixty6.h -------------------------------------------------------------------------------- /devices/video/videoctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/videoctrl.cpp -------------------------------------------------------------------------------- /devices/video/videoctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/devices/video/videoctrl.h -------------------------------------------------------------------------------- /dppcicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/dppcicon.ico -------------------------------------------------------------------------------- /endianswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/endianswap.h -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/icon.rc -------------------------------------------------------------------------------- /machines/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/CMakeLists.txt -------------------------------------------------------------------------------- /machines/machinebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinebase.cpp -------------------------------------------------------------------------------- /machines/machinebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinebase.h -------------------------------------------------------------------------------- /machines/machinebondi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinebondi.cpp -------------------------------------------------------------------------------- /machines/machinecatalyst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinecatalyst.cpp -------------------------------------------------------------------------------- /machines/machinefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinefactory.cpp -------------------------------------------------------------------------------- /machines/machinefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinefactory.h -------------------------------------------------------------------------------- /machines/machinegazelle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinegazelle.cpp -------------------------------------------------------------------------------- /machines/machinegossamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinegossamer.cpp -------------------------------------------------------------------------------- /machines/machinepdm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinepdm.cpp -------------------------------------------------------------------------------- /machines/machineproperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machineproperties.cpp -------------------------------------------------------------------------------- /machines/machineproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machineproperties.h -------------------------------------------------------------------------------- /machines/machinetnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machinetnt.cpp -------------------------------------------------------------------------------- /machines/machineyosemite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/machines/machineyosemite.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/main.cpp -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/main.h -------------------------------------------------------------------------------- /main_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/main_sdl.cpp -------------------------------------------------------------------------------- /main_sdl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/main_sdl.m -------------------------------------------------------------------------------- /memaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/memaccess.h -------------------------------------------------------------------------------- /thirdparty/CLI11/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/thirdparty/CLI11/CLI11.hpp -------------------------------------------------------------------------------- /thirdparty/loguru/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/thirdparty/loguru/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/loguru/loguru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/thirdparty/loguru/loguru.cpp -------------------------------------------------------------------------------- /thirdparty/loguru/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/thirdparty/loguru/loguru.hpp -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/imgfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/utils/imgfile.h -------------------------------------------------------------------------------- /utils/imgfile_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/utils/imgfile_sdl.cpp -------------------------------------------------------------------------------- /utils/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/utils/profiler.cpp -------------------------------------------------------------------------------- /utils/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/utils/profiler.h -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/vcpkg.json -------------------------------------------------------------------------------- /zdocs/aboutthis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/aboutthis.md -------------------------------------------------------------------------------- /zdocs/adb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/adb.md -------------------------------------------------------------------------------- /zdocs/atirage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/atirage.md -------------------------------------------------------------------------------- /zdocs/awacs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/awacs.md -------------------------------------------------------------------------------- /zdocs/bmac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/bmac.md -------------------------------------------------------------------------------- /zdocs/cpu/powerpc/mmu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/cpu/powerpc/mmu.md -------------------------------------------------------------------------------- /zdocs/cpu/powerpc/mmuemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/cpu/powerpc/mmuemu.md -------------------------------------------------------------------------------- /zdocs/get-inherited-property notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/get-inherited-property notes.txt -------------------------------------------------------------------------------- /zdocs/grackle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/grackle.md -------------------------------------------------------------------------------- /zdocs/heathrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/heathrow.md -------------------------------------------------------------------------------- /zdocs/machines/pdmram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/machines/pdmram.md -------------------------------------------------------------------------------- /zdocs/memorymaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/memorymaps.md -------------------------------------------------------------------------------- /zdocs/mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/mesh.md -------------------------------------------------------------------------------- /zdocs/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/misc.md -------------------------------------------------------------------------------- /zdocs/openfirmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/openfirmware.md -------------------------------------------------------------------------------- /zdocs/powerpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/powerpc.md -------------------------------------------------------------------------------- /zdocs/viacuda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wack0/dingusppc-nt/HEAD/zdocs/viacuda.md --------------------------------------------------------------------------------