├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog.altivec ├── Makefile.am ├── README ├── TODO ├── autogen.sh ├── configure.ac ├── doc ├── .gitignore ├── Makefile.am ├── beos-missing-headers.diff └── ppc.1 ├── ppccfg.example ├── scripts ├── .gitignore ├── Makefile.am ├── ifppc_down ├── ifppc_down.beos ├── ifppc_down.setuid.cc ├── ifppc_up ├── ifppc_up.beos ├── ifppc_up.setuid.cc └── settings ├── sdl.m4 ├── src ├── .gitignore ├── Makefile.am ├── configparser.cc ├── configparser.h ├── cpu │ ├── .gitignore │ ├── Makefile.am │ ├── common.h │ ├── cpu.h │ ├── cpu_generic │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── ppc_alu.cc │ │ ├── ppc_alu.h │ │ ├── ppc_cpu.cc │ │ ├── ppc_cpu.h │ │ ├── ppc_dec.cc │ │ ├── ppc_dec.h │ │ ├── ppc_exc.cc │ │ ├── ppc_exc.h │ │ ├── ppc_fpu.cc │ │ ├── ppc_fpu.h │ │ ├── ppc_mmu.cc │ │ ├── ppc_mmu.h │ │ ├── ppc_opc.cc │ │ ├── ppc_opc.h │ │ ├── ppc_tools.h │ │ ├── ppc_vec.cc │ │ └── ppc_vec.h │ ├── cpu_jitc_x86 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── jitc.cc │ │ ├── jitc.h │ │ ├── jitc_asm.h │ │ ├── jitc_debug.cc │ │ ├── jitc_debug.h │ │ ├── jitc_mmu.S │ │ ├── jitc_tools.S │ │ ├── jitc_types.h │ │ ├── ppc_alu.cc │ │ ├── ppc_alu.h │ │ ├── ppc_cpu.cc │ │ ├── ppc_cpu.h │ │ ├── ppc_dec.cc │ │ ├── ppc_dec.h │ │ ├── ppc_esc.cc │ │ ├── ppc_esc.h │ │ ├── ppc_exc.cc │ │ ├── ppc_exc.h │ │ ├── ppc_fpu.cc │ │ ├── ppc_fpu.h │ │ ├── ppc_mmu.cc │ │ ├── ppc_mmu.h │ │ ├── ppc_opc.cc │ │ ├── ppc_opc.h │ │ ├── ppc_tools.h │ │ ├── ppc_vec.cc │ │ ├── ppc_vec.h │ │ ├── x86asm.cc │ │ └── x86asm.h │ ├── cpu_jitc_x86_64 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── jitc.cc │ │ ├── jitc.h │ │ ├── jitc_asm.h │ │ ├── jitc_common.h │ │ ├── jitc_debug.cc │ │ ├── jitc_debug.h │ │ ├── jitc_mmu.S │ │ ├── jitc_tools.S │ │ ├── jitc_types.h │ │ ├── ppc_alu.cc │ │ ├── ppc_alu.h │ │ ├── ppc_cpu.cc │ │ ├── ppc_cpu.h │ │ ├── ppc_dec.cc │ │ ├── ppc_dec.h │ │ ├── ppc_esc.cc │ │ ├── ppc_esc.h │ │ ├── ppc_exc.cc │ │ ├── ppc_exc.h │ │ ├── ppc_fpu.cc │ │ ├── ppc_fpu.h │ │ ├── ppc_mmu.cc │ │ ├── ppc_mmu.h │ │ ├── ppc_opc.cc │ │ ├── ppc_opc.h │ │ ├── ppc_tools.h │ │ ├── ppc_vec.cc │ │ ├── ppc_vec.h │ │ ├── x86_64asm.cc │ │ └── x86_64asm.h │ ├── debug.h │ └── mem.h ├── debug │ ├── .gitignore │ ├── Makefile.am │ ├── asm.cc │ ├── asm.h │ ├── debugger.cc │ ├── debugger.h │ ├── debugparse.y │ ├── debugtype.h │ ├── lex.h │ ├── lex.l │ ├── parsehelper.c │ ├── parsehelper.h │ ├── ppcdis.cc │ ├── ppcdis.h │ ├── ppcopc.cc │ ├── ppcopc.h │ ├── stdfuncs.cc │ ├── stdfuncs.h │ ├── tracers.h │ ├── x86dis.cc │ ├── x86dis.h │ ├── x86opc.cc │ └── x86opc.h ├── info.h ├── io │ ├── .gitignore │ ├── 3c90x │ │ ├── .gitignore │ │ ├── 3c90x.cc │ │ ├── 3c90x.h │ │ └── Makefile.am │ ├── Makefile.am │ ├── cuda │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── cuda.cc │ │ └── cuda.h │ ├── graphic │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── gcard.cc │ │ └── gcard.h │ ├── ide │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── ata.cc │ │ ├── ata.h │ │ ├── cd.cc │ │ ├── cd.h │ │ ├── ide.cc │ │ ├── ide.h │ │ ├── idedevice.cc │ │ ├── idedevice.h │ │ └── scsicmds.h │ ├── io.cc │ ├── io.h │ ├── macio │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── macio.cc │ │ └── macio.h │ ├── nvram │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── nvram.cc │ │ └── nvram.h │ ├── pci │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── pci.cc │ │ └── pci.h │ ├── pic │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── pic.cc │ │ └── pic.h │ ├── prom │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── fcode.cc │ │ ├── fcode.h │ │ ├── forth.cc │ │ ├── forth.h │ │ ├── forthtable.cc │ │ ├── forthtable.h │ │ ├── fs │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── fs.cc │ │ │ ├── fs.h │ │ │ ├── hfs.cc │ │ │ ├── hfs.h │ │ │ ├── hfs │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── apple.h │ │ │ │ ├── block.c │ │ │ │ ├── block.h │ │ │ │ ├── btree.c │ │ │ │ ├── btree.h │ │ │ │ ├── data.c │ │ │ │ ├── data.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── hfs.c │ │ │ │ ├── hfs.h │ │ │ │ ├── libhfs.h │ │ │ │ ├── low.c │ │ │ │ ├── low.h │ │ │ │ ├── medium.c │ │ │ │ ├── medium.h │ │ │ │ ├── node.c │ │ │ │ ├── node.h │ │ │ │ ├── os.cc │ │ │ │ ├── os.h │ │ │ │ ├── record.c │ │ │ │ ├── record.h │ │ │ │ ├── version.c │ │ │ │ ├── version.h │ │ │ │ ├── volume.c │ │ │ │ └── volume.h │ │ │ ├── hfsglue.h │ │ │ ├── hfsplus.cc │ │ │ ├── hfsplus.h │ │ │ ├── hfsplus │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── apple.h │ │ │ │ ├── blockiter.c │ │ │ │ ├── blockiter.h │ │ │ │ ├── btree.c │ │ │ │ ├── btree.h │ │ │ │ ├── hfs.h │ │ │ │ ├── hfsp.h │ │ │ │ ├── hfstime.c │ │ │ │ ├── hfstime.h │ │ │ │ ├── libhfsp.c │ │ │ │ ├── libhfsp.h │ │ │ │ ├── os.cc │ │ │ │ ├── os.h │ │ │ │ ├── partitions.c │ │ │ │ ├── partitions.h │ │ │ │ ├── record.c │ │ │ │ ├── record.h │ │ │ │ ├── swab.h │ │ │ │ ├── unicode.c │ │ │ │ ├── unicode.h │ │ │ │ ├── volume.c │ │ │ │ └── volume.h │ │ │ ├── hfsplusglue.h │ │ │ ├── hfsstruct.h │ │ │ ├── part.cc │ │ │ └── part.h │ │ ├── prom.cc │ │ ├── prom.h │ │ ├── promboot.cc │ │ ├── promboot.h │ │ ├── promdt.cc │ │ ├── promdt.h │ │ ├── prommem.cc │ │ ├── prommem.h │ │ ├── promosi.cc │ │ └── promosi.h │ ├── rtl8139 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── rtl8139.cc │ │ └── rtl8139.h │ ├── serial │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── serial.cc │ │ └── serial.h │ └── usb │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── usb.cc │ │ └── usb.h ├── main.cc ├── ppc_button_changecd.c ├── ppc_button_changecd.h ├── ppc_font.c ├── ppc_font.h ├── ppc_img.c ├── ppc_img.h ├── system │ ├── .gitignore │ ├── Makefile.am │ ├── arch │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── generic │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── sysendian.h │ │ │ ├── sysfeatures.h │ │ │ └── sysvaccel.cc │ │ ├── sysendian.h │ │ ├── sysfeatures.h │ │ ├── x86 │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── sysendian.h │ │ │ ├── sysfeatures.h │ │ │ ├── sysvaccel.cc │ │ │ └── vaccel.S │ │ └── x86_64 │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── sysendian.h │ │ │ ├── sysfeatures.h │ │ │ ├── sysvaccel.cc │ │ │ └── vaccel.S │ ├── device.cc │ ├── device.h │ ├── display.cc │ ├── display.h │ ├── event.h │ ├── file.cc │ ├── file.h │ ├── fileofs.h │ ├── font.cc │ ├── font.h │ ├── gif.cc │ ├── gif.h │ ├── keyboard.cc │ ├── keyboard.h │ ├── mouse.cc │ ├── mouse.h │ ├── osapi │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── beos │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── syscdrom.cc │ │ │ ├── sysclipboard.cc │ │ │ ├── sysfile.cc │ │ │ ├── sysinit.cc │ │ │ ├── systhread.cc │ │ │ ├── systimer.cc │ │ │ └── types.h │ │ ├── posix │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── syscdrom.cc │ │ │ ├── sysclipboard.cc │ │ │ ├── sysethtun.cc │ │ │ ├── sysfile.cc │ │ │ ├── sysinit.cc │ │ │ ├── systhread.cc │ │ │ ├── systimer.cc │ │ │ ├── sysvm.cc │ │ │ └── types.h │ │ └── win32 │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── aspi-win32.h │ │ │ ├── scsipt.h │ │ │ ├── scsitypes.h │ │ │ ├── syscdrom.cc │ │ │ ├── sysclipboard.cc │ │ │ ├── sysethtun.cc │ │ │ ├── sysfile.cc │ │ │ ├── sysinit.cc │ │ │ ├── systhread.cc │ │ │ ├── systimer.cc │ │ │ ├── tap_constants.h │ │ │ └── types.h │ ├── sys.cc │ ├── sys.h │ ├── syscdrom.h │ ├── sysclk.h │ ├── sysethtun.h │ ├── sysexcept.cc │ ├── sysexcept.h │ ├── sysfeatures.h │ ├── systhread.h │ ├── systimer.h │ ├── sysvaccel.h │ ├── sysvm.h │ ├── types.h │ ├── ui │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── beos │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── gui.cc │ │ │ ├── pearpc-res.h │ │ │ ├── pearpc-res.rdef │ │ │ ├── sysbeos.cc │ │ │ ├── sysbeos.h │ │ │ ├── sysdisplay.cc │ │ │ ├── syskeyboard.cc │ │ │ └── sysmouse.cc │ │ ├── gtk │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── gui.cc │ │ ├── gui.h │ │ ├── qt │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── gui.cc │ │ ├── sdl │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── gui.cc │ │ │ ├── sysdisplay.cc │ │ │ ├── syskeyboard.cc │ │ │ ├── sysmouse.cc │ │ │ ├── syssdl.cc │ │ │ └── syssdl.h │ │ ├── win32 │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── gui.cc │ │ │ ├── ppc.ico │ │ │ ├── resources.h │ │ │ ├── resources.rc │ │ │ ├── sysdisplay.cc │ │ │ ├── syskeyboard.cc │ │ │ ├── sysmouse.cc │ │ │ ├── syswin.cc │ │ │ └── syswin.h │ │ └── x11 │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── gui.cc │ │ │ ├── sysdisplay.cc │ │ │ ├── syskeyboard.cc │ │ │ ├── sysmouse.cc │ │ │ ├── sysx11.cc │ │ │ └── sysx11.h │ ├── vt100.cc │ └── vt100.h └── tools │ ├── .gitignore │ ├── Makefile.am │ ├── atom.cc │ ├── atom.h │ ├── configfile.cc │ ├── configfile.h │ ├── crc32.cc │ ├── crc32.h │ ├── crc32defs.h │ ├── crc32table.h │ ├── cstream.h │ ├── data.cc │ ├── data.h │ ├── debug.cc │ ├── debug.h │ ├── endianess.cc │ ├── endianess.h │ ├── except.cc │ ├── except.h │ ├── snprintf.cc │ ├── snprintf.h │ ├── store.cc │ ├── store.h │ ├── str.cc │ ├── str.h │ ├── stream.cc │ ├── stream.h │ ├── strtools.cc │ ├── strtools.h │ ├── thread.cc │ └── thread.h └── video.x /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.altivec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/ChangeLog.altivec -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/beos-missing-headers.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/doc/beos-missing-headers.diff -------------------------------------------------------------------------------- /doc/ppc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/doc/ppc.1 -------------------------------------------------------------------------------- /ppccfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/ppccfg.example -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/ifppc_down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_down -------------------------------------------------------------------------------- /scripts/ifppc_down.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_down.beos -------------------------------------------------------------------------------- /scripts/ifppc_down.setuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_down.setuid.cc -------------------------------------------------------------------------------- /scripts/ifppc_up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_up -------------------------------------------------------------------------------- /scripts/ifppc_up.beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_up.beos -------------------------------------------------------------------------------- /scripts/ifppc_up.setuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/ifppc_up.setuid.cc -------------------------------------------------------------------------------- /scripts/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/scripts/settings -------------------------------------------------------------------------------- /sdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/sdl.m4 -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/configparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/configparser.cc -------------------------------------------------------------------------------- /src/configparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/configparser.h -------------------------------------------------------------------------------- /src/cpu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/.gitignore -------------------------------------------------------------------------------- /src/cpu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/Makefile.am -------------------------------------------------------------------------------- /src/cpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/common.h -------------------------------------------------------------------------------- /src/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/.gitignore -------------------------------------------------------------------------------- /src/cpu/cpu_generic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/Makefile.am -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_alu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_alu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_alu.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_cpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_cpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_dec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_dec.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_exc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_exc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_exc.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_fpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_fpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_fpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_mmu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_mmu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_mmu.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_opc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_opc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_opc.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_tools.h -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_vec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_generic/ppc_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_generic/ppc_vec.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/.gitignore -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/Makefile.am -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_asm.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_debug.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_debug.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_mmu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_mmu.S -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_tools.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_tools.S -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/jitc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/jitc_types.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_alu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_alu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_alu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_cpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_cpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_dec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_dec.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_esc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_esc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_esc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_esc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_exc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_exc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_exc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_fpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_fpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_fpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_mmu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_mmu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_mmu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_opc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_opc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_opc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_tools.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_vec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/ppc_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/ppc_vec.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/x86asm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/x86asm.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86/x86asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86/x86asm.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/.gitignore -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/Makefile.am -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_asm.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_common.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_debug.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_debug.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_mmu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_mmu.S -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_tools.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_tools.S -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/jitc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/jitc_types.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_alu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_alu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_alu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_alu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_cpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_cpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_dec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_dec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_dec.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_esc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_esc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_esc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_esc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_exc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_exc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_exc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_fpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_fpu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_fpu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_mmu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_mmu.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_mmu.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_opc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_opc.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_opc.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_tools.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_vec.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/ppc_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/ppc_vec.h -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/x86_64asm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/x86_64asm.cc -------------------------------------------------------------------------------- /src/cpu/cpu_jitc_x86_64/x86_64asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/cpu_jitc_x86_64/x86_64asm.h -------------------------------------------------------------------------------- /src/cpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/debug.h -------------------------------------------------------------------------------- /src/cpu/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/cpu/mem.h -------------------------------------------------------------------------------- /src/debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/.gitignore -------------------------------------------------------------------------------- /src/debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/Makefile.am -------------------------------------------------------------------------------- /src/debug/asm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/asm.cc -------------------------------------------------------------------------------- /src/debug/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/asm.h -------------------------------------------------------------------------------- /src/debug/debugger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/debugger.cc -------------------------------------------------------------------------------- /src/debug/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/debugger.h -------------------------------------------------------------------------------- /src/debug/debugparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/debugparse.y -------------------------------------------------------------------------------- /src/debug/debugtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/debugtype.h -------------------------------------------------------------------------------- /src/debug/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/lex.h -------------------------------------------------------------------------------- /src/debug/lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/lex.l -------------------------------------------------------------------------------- /src/debug/parsehelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/parsehelper.c -------------------------------------------------------------------------------- /src/debug/parsehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/parsehelper.h -------------------------------------------------------------------------------- /src/debug/ppcdis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/ppcdis.cc -------------------------------------------------------------------------------- /src/debug/ppcdis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/ppcdis.h -------------------------------------------------------------------------------- /src/debug/ppcopc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/ppcopc.cc -------------------------------------------------------------------------------- /src/debug/ppcopc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/ppcopc.h -------------------------------------------------------------------------------- /src/debug/stdfuncs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/stdfuncs.cc -------------------------------------------------------------------------------- /src/debug/stdfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/stdfuncs.h -------------------------------------------------------------------------------- /src/debug/tracers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/tracers.h -------------------------------------------------------------------------------- /src/debug/x86dis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/x86dis.cc -------------------------------------------------------------------------------- /src/debug/x86dis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/x86dis.h -------------------------------------------------------------------------------- /src/debug/x86opc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/x86opc.cc -------------------------------------------------------------------------------- /src/debug/x86opc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/debug/x86opc.h -------------------------------------------------------------------------------- /src/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/info.h -------------------------------------------------------------------------------- /src/io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/.gitignore -------------------------------------------------------------------------------- /src/io/3c90x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/3c90x/.gitignore -------------------------------------------------------------------------------- /src/io/3c90x/3c90x.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/3c90x/3c90x.cc -------------------------------------------------------------------------------- /src/io/3c90x/3c90x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/3c90x/3c90x.h -------------------------------------------------------------------------------- /src/io/3c90x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/3c90x/Makefile.am -------------------------------------------------------------------------------- /src/io/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/Makefile.am -------------------------------------------------------------------------------- /src/io/cuda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/cuda/.gitignore -------------------------------------------------------------------------------- /src/io/cuda/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/cuda/Makefile.am -------------------------------------------------------------------------------- /src/io/cuda/cuda.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/cuda/cuda.cc -------------------------------------------------------------------------------- /src/io/cuda/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/cuda/cuda.h -------------------------------------------------------------------------------- /src/io/graphic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/graphic/.gitignore -------------------------------------------------------------------------------- /src/io/graphic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/graphic/Makefile.am -------------------------------------------------------------------------------- /src/io/graphic/gcard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/graphic/gcard.cc -------------------------------------------------------------------------------- /src/io/graphic/gcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/graphic/gcard.h -------------------------------------------------------------------------------- /src/io/ide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/.gitignore -------------------------------------------------------------------------------- /src/io/ide/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/Makefile.am -------------------------------------------------------------------------------- /src/io/ide/ata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/ata.cc -------------------------------------------------------------------------------- /src/io/ide/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/ata.h -------------------------------------------------------------------------------- /src/io/ide/cd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/cd.cc -------------------------------------------------------------------------------- /src/io/ide/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/cd.h -------------------------------------------------------------------------------- /src/io/ide/ide.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/ide.cc -------------------------------------------------------------------------------- /src/io/ide/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/ide.h -------------------------------------------------------------------------------- /src/io/ide/idedevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/idedevice.cc -------------------------------------------------------------------------------- /src/io/ide/idedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/idedevice.h -------------------------------------------------------------------------------- /src/io/ide/scsicmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/ide/scsicmds.h -------------------------------------------------------------------------------- /src/io/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/io.cc -------------------------------------------------------------------------------- /src/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/io.h -------------------------------------------------------------------------------- /src/io/macio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/macio/.gitignore -------------------------------------------------------------------------------- /src/io/macio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/macio/Makefile.am -------------------------------------------------------------------------------- /src/io/macio/macio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/macio/macio.cc -------------------------------------------------------------------------------- /src/io/macio/macio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/macio/macio.h -------------------------------------------------------------------------------- /src/io/nvram/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/nvram/.gitignore -------------------------------------------------------------------------------- /src/io/nvram/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/nvram/Makefile.am -------------------------------------------------------------------------------- /src/io/nvram/nvram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/nvram/nvram.cc -------------------------------------------------------------------------------- /src/io/nvram/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/nvram/nvram.h -------------------------------------------------------------------------------- /src/io/pci/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pci/.gitignore -------------------------------------------------------------------------------- /src/io/pci/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pci/Makefile.am -------------------------------------------------------------------------------- /src/io/pci/pci.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pci/pci.cc -------------------------------------------------------------------------------- /src/io/pci/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pci/pci.h -------------------------------------------------------------------------------- /src/io/pic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pic/.gitignore -------------------------------------------------------------------------------- /src/io/pic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pic/Makefile.am -------------------------------------------------------------------------------- /src/io/pic/pic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pic/pic.cc -------------------------------------------------------------------------------- /src/io/pic/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/pic/pic.h -------------------------------------------------------------------------------- /src/io/prom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/.gitignore -------------------------------------------------------------------------------- /src/io/prom/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/Makefile.am -------------------------------------------------------------------------------- /src/io/prom/fcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fcode.cc -------------------------------------------------------------------------------- /src/io/prom/fcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fcode.h -------------------------------------------------------------------------------- /src/io/prom/forth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/forth.cc -------------------------------------------------------------------------------- /src/io/prom/forth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/forth.h -------------------------------------------------------------------------------- /src/io/prom/forthtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/forthtable.cc -------------------------------------------------------------------------------- /src/io/prom/forthtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/forthtable.h -------------------------------------------------------------------------------- /src/io/prom/fs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/.gitignore -------------------------------------------------------------------------------- /src/io/prom/fs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/Makefile.am -------------------------------------------------------------------------------- /src/io/prom/fs/fs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/fs.cc -------------------------------------------------------------------------------- /src/io/prom/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/fs.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs.cc -------------------------------------------------------------------------------- /src/io/prom/fs/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/.gitignore -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/Makefile.am -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/apple.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/block.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/block.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/btree.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/btree.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/data.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/data.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/file.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/file.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/hfs.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/hfs.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/libhfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/libhfs.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/low.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/low.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/medium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/medium.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/medium.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/node.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/node.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/os.cc -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/os.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/record.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/record.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/version.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/version.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/volume.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfs/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfs/volume.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsglue.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus.cc -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/.gitignore -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/Makefile.am -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/apple.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/blockiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/blockiter.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/blockiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/blockiter.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/btree.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/btree.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/hfs.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/hfsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/hfsp.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/hfstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/hfstime.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/hfstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/hfstime.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/libhfsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/libhfsp.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/libhfsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/libhfsp.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/os.cc -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/os.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/partitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/partitions.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/partitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/partitions.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/record.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/record.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/swab.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/unicode.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/unicode.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/volume.c -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplus/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplus/volume.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsplusglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsplusglue.h -------------------------------------------------------------------------------- /src/io/prom/fs/hfsstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/hfsstruct.h -------------------------------------------------------------------------------- /src/io/prom/fs/part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/part.cc -------------------------------------------------------------------------------- /src/io/prom/fs/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/fs/part.h -------------------------------------------------------------------------------- /src/io/prom/prom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/prom.cc -------------------------------------------------------------------------------- /src/io/prom/prom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/prom.h -------------------------------------------------------------------------------- /src/io/prom/promboot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promboot.cc -------------------------------------------------------------------------------- /src/io/prom/promboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promboot.h -------------------------------------------------------------------------------- /src/io/prom/promdt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promdt.cc -------------------------------------------------------------------------------- /src/io/prom/promdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promdt.h -------------------------------------------------------------------------------- /src/io/prom/prommem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/prommem.cc -------------------------------------------------------------------------------- /src/io/prom/prommem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/prommem.h -------------------------------------------------------------------------------- /src/io/prom/promosi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promosi.cc -------------------------------------------------------------------------------- /src/io/prom/promosi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/prom/promosi.h -------------------------------------------------------------------------------- /src/io/rtl8139/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/rtl8139/.gitignore -------------------------------------------------------------------------------- /src/io/rtl8139/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/rtl8139/Makefile.am -------------------------------------------------------------------------------- /src/io/rtl8139/rtl8139.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/rtl8139/rtl8139.cc -------------------------------------------------------------------------------- /src/io/rtl8139/rtl8139.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/rtl8139/rtl8139.h -------------------------------------------------------------------------------- /src/io/serial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/serial/.gitignore -------------------------------------------------------------------------------- /src/io/serial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/serial/Makefile.am -------------------------------------------------------------------------------- /src/io/serial/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/serial/serial.cc -------------------------------------------------------------------------------- /src/io/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/serial/serial.h -------------------------------------------------------------------------------- /src/io/usb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/usb/.gitignore -------------------------------------------------------------------------------- /src/io/usb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/usb/Makefile.am -------------------------------------------------------------------------------- /src/io/usb/usb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/usb/usb.cc -------------------------------------------------------------------------------- /src/io/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/io/usb/usb.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/ppc_button_changecd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_button_changecd.c -------------------------------------------------------------------------------- /src/ppc_button_changecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_button_changecd.h -------------------------------------------------------------------------------- /src/ppc_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_font.c -------------------------------------------------------------------------------- /src/ppc_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_font.h -------------------------------------------------------------------------------- /src/ppc_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_img.c -------------------------------------------------------------------------------- /src/ppc_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/ppc_img.h -------------------------------------------------------------------------------- /src/system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/.gitignore -------------------------------------------------------------------------------- /src/system/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/Makefile.am -------------------------------------------------------------------------------- /src/system/arch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/.gitignore -------------------------------------------------------------------------------- /src/system/arch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/Makefile.am -------------------------------------------------------------------------------- /src/system/arch/generic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/generic/.gitignore -------------------------------------------------------------------------------- /src/system/arch/generic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/generic/Makefile.am -------------------------------------------------------------------------------- /src/system/arch/generic/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/generic/sysendian.h -------------------------------------------------------------------------------- /src/system/arch/generic/sysfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/generic/sysfeatures.h -------------------------------------------------------------------------------- /src/system/arch/generic/sysvaccel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/generic/sysvaccel.cc -------------------------------------------------------------------------------- /src/system/arch/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/sysendian.h -------------------------------------------------------------------------------- /src/system/arch/sysfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/sysfeatures.h -------------------------------------------------------------------------------- /src/system/arch/x86/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/.gitignore -------------------------------------------------------------------------------- /src/system/arch/x86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/Makefile.am -------------------------------------------------------------------------------- /src/system/arch/x86/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/sysendian.h -------------------------------------------------------------------------------- /src/system/arch/x86/sysfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/sysfeatures.h -------------------------------------------------------------------------------- /src/system/arch/x86/sysvaccel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/sysvaccel.cc -------------------------------------------------------------------------------- /src/system/arch/x86/vaccel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86/vaccel.S -------------------------------------------------------------------------------- /src/system/arch/x86_64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/.gitignore -------------------------------------------------------------------------------- /src/system/arch/x86_64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/Makefile.am -------------------------------------------------------------------------------- /src/system/arch/x86_64/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/sysendian.h -------------------------------------------------------------------------------- /src/system/arch/x86_64/sysfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/sysfeatures.h -------------------------------------------------------------------------------- /src/system/arch/x86_64/sysvaccel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/sysvaccel.cc -------------------------------------------------------------------------------- /src/system/arch/x86_64/vaccel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/arch/x86_64/vaccel.S -------------------------------------------------------------------------------- /src/system/device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/device.cc -------------------------------------------------------------------------------- /src/system/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/device.h -------------------------------------------------------------------------------- /src/system/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/display.cc -------------------------------------------------------------------------------- /src/system/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/display.h -------------------------------------------------------------------------------- /src/system/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/event.h -------------------------------------------------------------------------------- /src/system/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/file.cc -------------------------------------------------------------------------------- /src/system/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/file.h -------------------------------------------------------------------------------- /src/system/fileofs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/fileofs.h -------------------------------------------------------------------------------- /src/system/font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/font.cc -------------------------------------------------------------------------------- /src/system/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/font.h -------------------------------------------------------------------------------- /src/system/gif.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/gif.cc -------------------------------------------------------------------------------- /src/system/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/gif.h -------------------------------------------------------------------------------- /src/system/keyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/keyboard.cc -------------------------------------------------------------------------------- /src/system/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/keyboard.h -------------------------------------------------------------------------------- /src/system/mouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/mouse.cc -------------------------------------------------------------------------------- /src/system/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/mouse.h -------------------------------------------------------------------------------- /src/system/osapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/.gitignore -------------------------------------------------------------------------------- /src/system/osapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/Makefile.am -------------------------------------------------------------------------------- /src/system/osapi/beos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/.gitignore -------------------------------------------------------------------------------- /src/system/osapi/beos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/Makefile.am -------------------------------------------------------------------------------- /src/system/osapi/beos/syscdrom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/syscdrom.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/sysclipboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/sysclipboard.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/sysfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/sysfile.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/sysinit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/sysinit.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/systhread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/systhread.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/systimer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/systimer.cc -------------------------------------------------------------------------------- /src/system/osapi/beos/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/beos/types.h -------------------------------------------------------------------------------- /src/system/osapi/posix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/.gitignore -------------------------------------------------------------------------------- /src/system/osapi/posix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/Makefile.am -------------------------------------------------------------------------------- /src/system/osapi/posix/syscdrom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/syscdrom.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/sysclipboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/sysclipboard.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/sysethtun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/sysethtun.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/sysfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/sysfile.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/sysinit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/sysinit.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/systhread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/systhread.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/systimer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/systimer.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/sysvm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/sysvm.cc -------------------------------------------------------------------------------- /src/system/osapi/posix/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/posix/types.h -------------------------------------------------------------------------------- /src/system/osapi/win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/.gitignore -------------------------------------------------------------------------------- /src/system/osapi/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/Makefile.am -------------------------------------------------------------------------------- /src/system/osapi/win32/aspi-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/aspi-win32.h -------------------------------------------------------------------------------- /src/system/osapi/win32/scsipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/scsipt.h -------------------------------------------------------------------------------- /src/system/osapi/win32/scsitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/scsitypes.h -------------------------------------------------------------------------------- /src/system/osapi/win32/syscdrom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/syscdrom.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/sysclipboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/sysclipboard.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/sysethtun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/sysethtun.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/sysfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/sysfile.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/sysinit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/sysinit.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/systhread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/systhread.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/systimer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/systimer.cc -------------------------------------------------------------------------------- /src/system/osapi/win32/tap_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/tap_constants.h -------------------------------------------------------------------------------- /src/system/osapi/win32/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/osapi/win32/types.h -------------------------------------------------------------------------------- /src/system/sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sys.cc -------------------------------------------------------------------------------- /src/system/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sys.h -------------------------------------------------------------------------------- /src/system/syscdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/syscdrom.h -------------------------------------------------------------------------------- /src/system/sysclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysclk.h -------------------------------------------------------------------------------- /src/system/sysethtun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysethtun.h -------------------------------------------------------------------------------- /src/system/sysexcept.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysexcept.cc -------------------------------------------------------------------------------- /src/system/sysexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysexcept.h -------------------------------------------------------------------------------- /src/system/sysfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysfeatures.h -------------------------------------------------------------------------------- /src/system/systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/systhread.h -------------------------------------------------------------------------------- /src/system/systimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/systimer.h -------------------------------------------------------------------------------- /src/system/sysvaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysvaccel.h -------------------------------------------------------------------------------- /src/system/sysvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/sysvm.h -------------------------------------------------------------------------------- /src/system/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/types.h -------------------------------------------------------------------------------- /src/system/ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/.gitignore -------------------------------------------------------------------------------- /src/system/ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/beos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/.gitignore -------------------------------------------------------------------------------- /src/system/ui/beos/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/beos/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/gui.cc -------------------------------------------------------------------------------- /src/system/ui/beos/pearpc-res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/pearpc-res.h -------------------------------------------------------------------------------- /src/system/ui/beos/pearpc-res.rdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/pearpc-res.rdef -------------------------------------------------------------------------------- /src/system/ui/beos/sysbeos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/sysbeos.cc -------------------------------------------------------------------------------- /src/system/ui/beos/sysbeos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/sysbeos.h -------------------------------------------------------------------------------- /src/system/ui/beos/sysdisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/sysdisplay.cc -------------------------------------------------------------------------------- /src/system/ui/beos/syskeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/syskeyboard.cc -------------------------------------------------------------------------------- /src/system/ui/beos/sysmouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/beos/sysmouse.cc -------------------------------------------------------------------------------- /src/system/ui/gtk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/gtk/.gitignore -------------------------------------------------------------------------------- /src/system/ui/gtk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/gtk/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/gtk/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/gtk/gui.cc -------------------------------------------------------------------------------- /src/system/ui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/gui.h -------------------------------------------------------------------------------- /src/system/ui/qt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/qt/.gitignore -------------------------------------------------------------------------------- /src/system/ui/qt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/qt/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/qt/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/qt/gui.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/.gitignore -------------------------------------------------------------------------------- /src/system/ui/sdl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/sdl/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/gui.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/sysdisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/sysdisplay.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/syskeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/syskeyboard.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/sysmouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/sysmouse.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/syssdl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/syssdl.cc -------------------------------------------------------------------------------- /src/system/ui/sdl/syssdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/sdl/syssdl.h -------------------------------------------------------------------------------- /src/system/ui/win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/.gitignore -------------------------------------------------------------------------------- /src/system/ui/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/win32/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/gui.cc -------------------------------------------------------------------------------- /src/system/ui/win32/ppc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/ppc.ico -------------------------------------------------------------------------------- /src/system/ui/win32/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/resources.h -------------------------------------------------------------------------------- /src/system/ui/win32/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/resources.rc -------------------------------------------------------------------------------- /src/system/ui/win32/sysdisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/sysdisplay.cc -------------------------------------------------------------------------------- /src/system/ui/win32/syskeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/syskeyboard.cc -------------------------------------------------------------------------------- /src/system/ui/win32/sysmouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/sysmouse.cc -------------------------------------------------------------------------------- /src/system/ui/win32/syswin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/syswin.cc -------------------------------------------------------------------------------- /src/system/ui/win32/syswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/win32/syswin.h -------------------------------------------------------------------------------- /src/system/ui/x11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/.gitignore -------------------------------------------------------------------------------- /src/system/ui/x11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/Makefile.am -------------------------------------------------------------------------------- /src/system/ui/x11/gui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/gui.cc -------------------------------------------------------------------------------- /src/system/ui/x11/sysdisplay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/sysdisplay.cc -------------------------------------------------------------------------------- /src/system/ui/x11/syskeyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/syskeyboard.cc -------------------------------------------------------------------------------- /src/system/ui/x11/sysmouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/sysmouse.cc -------------------------------------------------------------------------------- /src/system/ui/x11/sysx11.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/sysx11.cc -------------------------------------------------------------------------------- /src/system/ui/x11/sysx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/ui/x11/sysx11.h -------------------------------------------------------------------------------- /src/system/vt100.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/vt100.cc -------------------------------------------------------------------------------- /src/system/vt100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/system/vt100.h -------------------------------------------------------------------------------- /src/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/.gitignore -------------------------------------------------------------------------------- /src/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/Makefile.am -------------------------------------------------------------------------------- /src/tools/atom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/atom.cc -------------------------------------------------------------------------------- /src/tools/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/atom.h -------------------------------------------------------------------------------- /src/tools/configfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/configfile.cc -------------------------------------------------------------------------------- /src/tools/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/configfile.h -------------------------------------------------------------------------------- /src/tools/crc32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/crc32.cc -------------------------------------------------------------------------------- /src/tools/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/crc32.h -------------------------------------------------------------------------------- /src/tools/crc32defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/crc32defs.h -------------------------------------------------------------------------------- /src/tools/crc32table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/crc32table.h -------------------------------------------------------------------------------- /src/tools/cstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/cstream.h -------------------------------------------------------------------------------- /src/tools/data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/data.cc -------------------------------------------------------------------------------- /src/tools/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/data.h -------------------------------------------------------------------------------- /src/tools/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/debug.cc -------------------------------------------------------------------------------- /src/tools/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/debug.h -------------------------------------------------------------------------------- /src/tools/endianess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/endianess.cc -------------------------------------------------------------------------------- /src/tools/endianess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/endianess.h -------------------------------------------------------------------------------- /src/tools/except.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/except.cc -------------------------------------------------------------------------------- /src/tools/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/except.h -------------------------------------------------------------------------------- /src/tools/snprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/snprintf.cc -------------------------------------------------------------------------------- /src/tools/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/snprintf.h -------------------------------------------------------------------------------- /src/tools/store.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/store.cc -------------------------------------------------------------------------------- /src/tools/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/store.h -------------------------------------------------------------------------------- /src/tools/str.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/str.cc -------------------------------------------------------------------------------- /src/tools/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/str.h -------------------------------------------------------------------------------- /src/tools/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/stream.cc -------------------------------------------------------------------------------- /src/tools/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/stream.h -------------------------------------------------------------------------------- /src/tools/strtools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/strtools.cc -------------------------------------------------------------------------------- /src/tools/strtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/strtools.h -------------------------------------------------------------------------------- /src/tools/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/thread.cc -------------------------------------------------------------------------------- /src/tools/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/src/tools/thread.h -------------------------------------------------------------------------------- /video.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianbiallas/pearpc/HEAD/video.x --------------------------------------------------------------------------------