├── COPYING ├── README.md ├── README.original ├── cmos.ram ├── hostfs └── Network │ └── ReadMe,fff ├── netroms └── EtherRPCEm,ffa ├── poduleroms ├── hostfs,ffa └── hostfsfiler,ffa ├── riscos-progs ├── EtherRPCEm │ ├── AutoSense │ │ └── EtherRPCEm,ffb │ ├── LICENSE │ ├── Makefile │ ├── Notes │ ├── ReadMe,fff │ ├── bin2c,ff8 │ ├── bin2c_src │ │ └── bin2c-0.1.zip │ ├── c │ │ └── Module │ ├── cmhg │ │ └── ModHdr │ ├── h │ │ ├── DCI │ │ ├── Defines │ │ ├── Equates │ │ ├── Module │ │ ├── Structs │ │ └── mbuf_c │ ├── o │ │ └── Empty,fff │ └── s │ │ └── intveneer ├── HostFS │ ├── Makefile │ ├── arm_binutils.txt │ ├── hostfs,ffa │ ├── hostfs.s │ ├── hostfsfiler,ffa │ └── hostfsfiler.s └── SyncClock │ ├── SyncClock,ffa │ └── SyncClockSrc,ffb ├── roms └── roms.txt ├── rpc.cfg ├── src ├── ArmDynarec.c ├── ArmDynarecOps.h ├── arm.c ├── arm.h ├── arm_common.c ├── arm_common.h ├── cdrom-ioctl.h ├── cdrom-iso.c ├── cdrom-iso.h ├── cdrom-linuxioctl.c ├── cmos.c ├── cmos.h ├── codegen_amd64.c ├── codegen_amd64.h ├── codegen_null.c ├── codegen_x86.c ├── codegen_x86.h ├── codegen_x86_common.h ├── cp15.c ├── cp15.h ├── disc.c ├── disc.h ├── disc_adf.c ├── disc_adf.h ├── disc_hfe.c ├── disc_hfe.h ├── disc_mfm_common.c ├── disc_mfm_common.h ├── dynarec.txt ├── fdc.c ├── fdc.h ├── fpa.c ├── hostfs-unix.c ├── hostfs-win.c ├── hostfs.c ├── hostfs.h ├── hostfs_internal.h ├── i8042.c ├── i8042.h ├── icside.c ├── ide.c ├── ide.h ├── iomd.c ├── iomd.h ├── keyboard.c ├── keyboard.h ├── mem.c ├── mem.h ├── network-linux.c ├── network-nat.c ├── network-nat.h ├── network.c ├── network.h ├── podulerom.c ├── podulerom.h ├── podules.c ├── podules.h ├── qt6 │ ├── about_dialog.cpp │ ├── about_dialog.h │ ├── buildit.sh │ ├── configure_dialog.cpp │ ├── configure_dialog.h │ ├── container_window.cpp │ ├── container_window.h │ ├── icon.qrc │ ├── keyboard_win.c │ ├── keyboard_x.c │ ├── main_window.cpp │ ├── main_window.h │ ├── nat_edit_dialog.cpp │ ├── nat_edit_dialog.h │ ├── nat_list_dialog.cpp │ ├── nat_list_dialog.h │ ├── network_dialog.cpp │ ├── network_dialog.h │ ├── plt_sound.cpp │ ├── plt_sound.h │ ├── rpc-qt6.cpp │ ├── rpc-qt6.h │ ├── rpcemu.pro │ ├── rpcemu_icon.png │ └── settings.cpp ├── romload.c ├── romload.h ├── rpc-linux.c ├── rpc-machdep.c ├── rpcemu.c ├── rpcemu.h ├── slirp │ ├── bootp.c │ ├── bootp.h │ ├── cksum.c │ ├── cutils.c │ ├── cutils.h │ ├── debug.h │ ├── if.c │ ├── if.h │ ├── ip.h │ ├── ip_icmp.c │ ├── ip_icmp.h │ ├── ip_input.c │ ├── ip_output.c │ ├── libslirp.h │ ├── main.h │ ├── mbuf.c │ ├── mbuf.h │ ├── misc.c │ ├── misc.h │ ├── sbuf.c │ ├── sbuf.h │ ├── slirp.c │ ├── slirp.h │ ├── slirp_config.h │ ├── socket.c │ ├── socket.h │ ├── tcp.h │ ├── tcp_input.c │ ├── tcp_output.c │ ├── tcp_subr.c │ ├── tcp_timer.c │ ├── tcp_timer.h │ ├── tcp_var.h │ ├── tcpip.h │ ├── tftp.h │ ├── udp.c │ └── udp.h ├── sound.c ├── sound.h ├── superio.c ├── superio.h ├── tap.h ├── vidc20.c ├── vidc20.h └── win │ ├── RPCEmu.wxs │ ├── cdrom-ioctl.c │ ├── network-win.c │ ├── rpc-win.c │ ├── rpcemu.ico │ ├── rpcemu.manifest │ └── tap-win32.c └── wasm ├── cmos.ram ├── hostfs ├── !Boot,feb ├── Choices │ └── ReadMe,fff └── ReadMe,fff └── screenshot.jpg /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/README.md -------------------------------------------------------------------------------- /README.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/README.original -------------------------------------------------------------------------------- /cmos.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/cmos.ram -------------------------------------------------------------------------------- /hostfs/Network/ReadMe,fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/hostfs/Network/ReadMe,fff -------------------------------------------------------------------------------- /netroms/EtherRPCEm,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/netroms/EtherRPCEm,ffa -------------------------------------------------------------------------------- /poduleroms/hostfs,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/poduleroms/hostfs,ffa -------------------------------------------------------------------------------- /poduleroms/hostfsfiler,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/poduleroms/hostfsfiler,ffa -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/AutoSense/EtherRPCEm,ffb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/AutoSense/EtherRPCEm,ffb -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/LICENSE -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/Makefile -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/Notes -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/ReadMe,fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/ReadMe,fff -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/bin2c,ff8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/bin2c,ff8 -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/bin2c_src/bin2c-0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/bin2c_src/bin2c-0.1.zip -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/c/Module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/c/Module -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/cmhg/ModHdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/cmhg/ModHdr -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/DCI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/DCI -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/Defines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/Defines -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/Equates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/Equates -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/Module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/Module -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/Structs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/Structs -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/h/mbuf_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/h/mbuf_c -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/o/Empty,fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/o/Empty,fff -------------------------------------------------------------------------------- /riscos-progs/EtherRPCEm/s/intveneer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/EtherRPCEm/s/intveneer -------------------------------------------------------------------------------- /riscos-progs/HostFS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/Makefile -------------------------------------------------------------------------------- /riscos-progs/HostFS/arm_binutils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/arm_binutils.txt -------------------------------------------------------------------------------- /riscos-progs/HostFS/hostfs,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/hostfs,ffa -------------------------------------------------------------------------------- /riscos-progs/HostFS/hostfs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/hostfs.s -------------------------------------------------------------------------------- /riscos-progs/HostFS/hostfsfiler,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/hostfsfiler,ffa -------------------------------------------------------------------------------- /riscos-progs/HostFS/hostfsfiler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/HostFS/hostfsfiler.s -------------------------------------------------------------------------------- /riscos-progs/SyncClock/SyncClock,ffa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/SyncClock/SyncClock,ffa -------------------------------------------------------------------------------- /riscos-progs/SyncClock/SyncClockSrc,ffb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/riscos-progs/SyncClock/SyncClockSrc,ffb -------------------------------------------------------------------------------- /roms/roms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/roms/roms.txt -------------------------------------------------------------------------------- /rpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/rpc.cfg -------------------------------------------------------------------------------- /src/ArmDynarec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/ArmDynarec.c -------------------------------------------------------------------------------- /src/ArmDynarecOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/ArmDynarecOps.h -------------------------------------------------------------------------------- /src/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/arm.c -------------------------------------------------------------------------------- /src/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/arm.h -------------------------------------------------------------------------------- /src/arm_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/arm_common.c -------------------------------------------------------------------------------- /src/arm_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/arm_common.h -------------------------------------------------------------------------------- /src/cdrom-ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cdrom-ioctl.h -------------------------------------------------------------------------------- /src/cdrom-iso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cdrom-iso.c -------------------------------------------------------------------------------- /src/cdrom-iso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cdrom-iso.h -------------------------------------------------------------------------------- /src/cdrom-linuxioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cdrom-linuxioctl.c -------------------------------------------------------------------------------- /src/cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cmos.c -------------------------------------------------------------------------------- /src/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cmos.h -------------------------------------------------------------------------------- /src/codegen_amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_amd64.c -------------------------------------------------------------------------------- /src/codegen_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_amd64.h -------------------------------------------------------------------------------- /src/codegen_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_null.c -------------------------------------------------------------------------------- /src/codegen_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_x86.c -------------------------------------------------------------------------------- /src/codegen_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_x86.h -------------------------------------------------------------------------------- /src/codegen_x86_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/codegen_x86_common.h -------------------------------------------------------------------------------- /src/cp15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cp15.c -------------------------------------------------------------------------------- /src/cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/cp15.h -------------------------------------------------------------------------------- /src/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc.c -------------------------------------------------------------------------------- /src/disc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc.h -------------------------------------------------------------------------------- /src/disc_adf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_adf.c -------------------------------------------------------------------------------- /src/disc_adf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_adf.h -------------------------------------------------------------------------------- /src/disc_hfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_hfe.c -------------------------------------------------------------------------------- /src/disc_hfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_hfe.h -------------------------------------------------------------------------------- /src/disc_mfm_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_mfm_common.c -------------------------------------------------------------------------------- /src/disc_mfm_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/disc_mfm_common.h -------------------------------------------------------------------------------- /src/dynarec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/dynarec.txt -------------------------------------------------------------------------------- /src/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/fdc.c -------------------------------------------------------------------------------- /src/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/fdc.h -------------------------------------------------------------------------------- /src/fpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/fpa.c -------------------------------------------------------------------------------- /src/hostfs-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/hostfs-unix.c -------------------------------------------------------------------------------- /src/hostfs-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/hostfs-win.c -------------------------------------------------------------------------------- /src/hostfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/hostfs.c -------------------------------------------------------------------------------- /src/hostfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/hostfs.h -------------------------------------------------------------------------------- /src/hostfs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/hostfs_internal.h -------------------------------------------------------------------------------- /src/i8042.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/i8042.c -------------------------------------------------------------------------------- /src/i8042.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/i8042.h -------------------------------------------------------------------------------- /src/icside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/icside.c -------------------------------------------------------------------------------- /src/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/ide.c -------------------------------------------------------------------------------- /src/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/ide.h -------------------------------------------------------------------------------- /src/iomd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/iomd.c -------------------------------------------------------------------------------- /src/iomd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/iomd.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/mem.c -------------------------------------------------------------------------------- /src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/mem.h -------------------------------------------------------------------------------- /src/network-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/network-linux.c -------------------------------------------------------------------------------- /src/network-nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/network-nat.c -------------------------------------------------------------------------------- /src/network-nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/network-nat.h -------------------------------------------------------------------------------- /src/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/network.c -------------------------------------------------------------------------------- /src/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/network.h -------------------------------------------------------------------------------- /src/podulerom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/podulerom.c -------------------------------------------------------------------------------- /src/podulerom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/podulerom.h -------------------------------------------------------------------------------- /src/podules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/podules.c -------------------------------------------------------------------------------- /src/podules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/podules.h -------------------------------------------------------------------------------- /src/qt6/about_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/about_dialog.cpp -------------------------------------------------------------------------------- /src/qt6/about_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/about_dialog.h -------------------------------------------------------------------------------- /src/qt6/buildit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | qtchooser -run-tool=qmake -qt=6 4 | -------------------------------------------------------------------------------- /src/qt6/configure_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/configure_dialog.cpp -------------------------------------------------------------------------------- /src/qt6/configure_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/configure_dialog.h -------------------------------------------------------------------------------- /src/qt6/container_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/container_window.cpp -------------------------------------------------------------------------------- /src/qt6/container_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/container_window.h -------------------------------------------------------------------------------- /src/qt6/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/icon.qrc -------------------------------------------------------------------------------- /src/qt6/keyboard_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/keyboard_win.c -------------------------------------------------------------------------------- /src/qt6/keyboard_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/keyboard_x.c -------------------------------------------------------------------------------- /src/qt6/main_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/main_window.cpp -------------------------------------------------------------------------------- /src/qt6/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/main_window.h -------------------------------------------------------------------------------- /src/qt6/nat_edit_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/nat_edit_dialog.cpp -------------------------------------------------------------------------------- /src/qt6/nat_edit_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/nat_edit_dialog.h -------------------------------------------------------------------------------- /src/qt6/nat_list_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/nat_list_dialog.cpp -------------------------------------------------------------------------------- /src/qt6/nat_list_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/nat_list_dialog.h -------------------------------------------------------------------------------- /src/qt6/network_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/network_dialog.cpp -------------------------------------------------------------------------------- /src/qt6/network_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/network_dialog.h -------------------------------------------------------------------------------- /src/qt6/plt_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/plt_sound.cpp -------------------------------------------------------------------------------- /src/qt6/plt_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/plt_sound.h -------------------------------------------------------------------------------- /src/qt6/rpc-qt6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/rpc-qt6.cpp -------------------------------------------------------------------------------- /src/qt6/rpc-qt6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/rpc-qt6.h -------------------------------------------------------------------------------- /src/qt6/rpcemu.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/rpcemu.pro -------------------------------------------------------------------------------- /src/qt6/rpcemu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/rpcemu_icon.png -------------------------------------------------------------------------------- /src/qt6/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/qt6/settings.cpp -------------------------------------------------------------------------------- /src/romload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/romload.c -------------------------------------------------------------------------------- /src/romload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/romload.h -------------------------------------------------------------------------------- /src/rpc-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/rpc-linux.c -------------------------------------------------------------------------------- /src/rpc-machdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/rpc-machdep.c -------------------------------------------------------------------------------- /src/rpcemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/rpcemu.c -------------------------------------------------------------------------------- /src/rpcemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/rpcemu.h -------------------------------------------------------------------------------- /src/slirp/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/bootp.c -------------------------------------------------------------------------------- /src/slirp/bootp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/bootp.h -------------------------------------------------------------------------------- /src/slirp/cksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/cksum.c -------------------------------------------------------------------------------- /src/slirp/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/cutils.c -------------------------------------------------------------------------------- /src/slirp/cutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/cutils.h -------------------------------------------------------------------------------- /src/slirp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/debug.h -------------------------------------------------------------------------------- /src/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/if.c -------------------------------------------------------------------------------- /src/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/if.h -------------------------------------------------------------------------------- /src/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/ip.h -------------------------------------------------------------------------------- /src/slirp/ip_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/ip_icmp.c -------------------------------------------------------------------------------- /src/slirp/ip_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/ip_icmp.h -------------------------------------------------------------------------------- /src/slirp/ip_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/ip_input.c -------------------------------------------------------------------------------- /src/slirp/ip_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/ip_output.c -------------------------------------------------------------------------------- /src/slirp/libslirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/libslirp.h -------------------------------------------------------------------------------- /src/slirp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/main.h -------------------------------------------------------------------------------- /src/slirp/mbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/mbuf.c -------------------------------------------------------------------------------- /src/slirp/mbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/mbuf.h -------------------------------------------------------------------------------- /src/slirp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/misc.c -------------------------------------------------------------------------------- /src/slirp/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/misc.h -------------------------------------------------------------------------------- /src/slirp/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/sbuf.c -------------------------------------------------------------------------------- /src/slirp/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/sbuf.h -------------------------------------------------------------------------------- /src/slirp/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/slirp.c -------------------------------------------------------------------------------- /src/slirp/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/slirp.h -------------------------------------------------------------------------------- /src/slirp/slirp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/slirp_config.h -------------------------------------------------------------------------------- /src/slirp/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/socket.c -------------------------------------------------------------------------------- /src/slirp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/socket.h -------------------------------------------------------------------------------- /src/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp.h -------------------------------------------------------------------------------- /src/slirp/tcp_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_input.c -------------------------------------------------------------------------------- /src/slirp/tcp_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_output.c -------------------------------------------------------------------------------- /src/slirp/tcp_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_subr.c -------------------------------------------------------------------------------- /src/slirp/tcp_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_timer.c -------------------------------------------------------------------------------- /src/slirp/tcp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_timer.h -------------------------------------------------------------------------------- /src/slirp/tcp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcp_var.h -------------------------------------------------------------------------------- /src/slirp/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tcpip.h -------------------------------------------------------------------------------- /src/slirp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/tftp.h -------------------------------------------------------------------------------- /src/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/udp.c -------------------------------------------------------------------------------- /src/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/slirp/udp.h -------------------------------------------------------------------------------- /src/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/sound.c -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/superio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/superio.c -------------------------------------------------------------------------------- /src/superio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/superio.h -------------------------------------------------------------------------------- /src/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/tap.h -------------------------------------------------------------------------------- /src/vidc20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/vidc20.c -------------------------------------------------------------------------------- /src/vidc20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/vidc20.h -------------------------------------------------------------------------------- /src/win/RPCEmu.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/RPCEmu.wxs -------------------------------------------------------------------------------- /src/win/cdrom-ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/cdrom-ioctl.c -------------------------------------------------------------------------------- /src/win/network-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/network-win.c -------------------------------------------------------------------------------- /src/win/rpc-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/rpc-win.c -------------------------------------------------------------------------------- /src/win/rpcemu.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/rpcemu.ico -------------------------------------------------------------------------------- /src/win/rpcemu.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/rpcemu.manifest -------------------------------------------------------------------------------- /src/win/tap-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/src/win/tap-win32.c -------------------------------------------------------------------------------- /wasm/cmos.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/wasm/cmos.ram -------------------------------------------------------------------------------- /wasm/hostfs/!Boot,feb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/wasm/hostfs/!Boot,feb -------------------------------------------------------------------------------- /wasm/hostfs/Choices/ReadMe,fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/wasm/hostfs/Choices/ReadMe,fff -------------------------------------------------------------------------------- /wasm/hostfs/ReadMe,fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/wasm/hostfs/ReadMe,fff -------------------------------------------------------------------------------- /wasm/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GMH-Code/RPCEmu/HEAD/wasm/screenshot.jpg --------------------------------------------------------------------------------