├── .DS_Store ├── .gitattributes ├── .github └── workflows │ ├── cmake-sdl1-win64.yml │ ├── cmake-sdl1.yml │ ├── cmake-win64.yml │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 6502.c ├── 6502.h ├── 6551.c ├── 6551.h ├── 6551_com.c ├── 6551_loopback.c ├── 6551_modem.c ├── 8912.c ├── 8912.h ├── CMakeLists.txt ├── ChangeLog.txt ├── ChangeLog.txt_os4icon.info ├── ChangeLog.txt_pngicon.info ├── Info.plist ├── LICENSE.txt ├── Makefile ├── Oricutron.guide ├── Oricutron.guide_os4icon.info ├── Oricutron.guide_pngicon.info ├── Oricutron_os4icon.info ├── Oricutron_pngicon.info ├── ReadMe-LiesMich_DE.txt ├── ReadMe.txt ├── ReadMe.txt_os4icon.info ├── ReadMe.txt_pngicon.info ├── ReadMe2Guide.rexx ├── ReadMeNinjaCMakeBuild.md ├── XCode ├── .DS_Store └── Oricutron │ ├── .DS_Store │ ├── Oricutron.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── j.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── torguet.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Oricutron.xcscheme │ └── xcuserdata │ │ ├── j.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── torguet.xcuserdatad │ │ └── xcschemes │ │ ├── Oricutron.xcscheme │ │ └── xcschememanagement.plist │ ├── Oricutron │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── logo1024.png │ │ │ ├── logo128.png │ │ │ ├── logo256-1.png │ │ │ ├── logo256.png │ │ │ ├── logo512-1.png │ │ │ ├── logo512.png │ │ │ ├── winicon16.png │ │ │ ├── winicon32-1.png │ │ │ ├── winicon32.png │ │ │ └── winicon64.png │ ├── Oricutron-Info.plist │ ├── Oricutron-Prefix.pch │ ├── SDLMain.h │ ├── SDLMain.m │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ └── winicon.icns │ └── OricutronTests │ ├── OricutronTests-Info.plist │ ├── OricutronTests.m │ └── en.lproj │ └── InfoPlist.strings ├── avi.c ├── avi.h ├── configure ├── disk.c ├── disk.h ├── disk_pravetz.c ├── disk_pravetz.h ├── disks └── .gitignore ├── doc ├── Doxyfile └── oricutronicon.png ├── filereq.h ├── filereq_amiga.c ├── filereq_beos.cpp ├── filereq_gtk.c ├── filereq_osx.m ├── filereq_sdl.c ├── filereq_win32.c ├── font.c ├── gui.c ├── gui.h ├── gui_android.c ├── gui_beos.cpp ├── gui_osx.m ├── gui_win.c ├── gui_x11.c ├── images ├── avirec.bmp ├── disk_active.bmp ├── disk_ejected.bmp ├── disk_idle.bmp ├── disk_modactive.bmp ├── disk_modified.bmp ├── gfx_atmoskbd.bmp ├── gfx_oric1kbd.bmp ├── gfx_pravetzkbd.bmp ├── status_bar.bmp ├── statusbar.bmp ├── tape_ejected.bmp ├── tape_pause.bmp ├── tape_play.bmp ├── tape_record.bmp ├── tape_stop.bmp └── winicon.bmp ├── joystick.c ├── joystick.h ├── keyboard.c ├── keyboard.h ├── machine.c ├── machine.h ├── main.c ├── main.h ├── monitor.c ├── monitor.h ├── msgbox.h ├── msgbox_beos.cpp ├── msgbox_gtk.c ├── msgbox_os2.c ├── msgbox_os4.c ├── msgbox_osx.m ├── msgbox_sdl.c ├── msgbox_win32.c ├── msvc ├── Oricutron.rc ├── VS2017 │ ├── Oricutron.sln │ ├── Oricutron.vcxproj │ ├── Oricutron.vcxproj.filters │ ├── make_links.cmd │ ├── msbuild_all.cmd │ ├── msrebuild_all.cmd │ └── readme.md ├── VS2019 │ ├── Oricutron.sln │ ├── Oricutron.vcxproj │ ├── Oricutron.vcxproj.filters │ ├── make_links.cmd │ ├── msbuild_all.cmd │ ├── msrebuild_all.cmd │ └── readme.md ├── dirent.h ├── strcasecmp.h └── unistd.h ├── oricutron.cfg ├── oricutron.desktop ├── oricutron.rc ├── oricutron.rdef ├── plugins ├── ch376 │ ├── ch376.c │ ├── ch376.h │ ├── oric_ch376_plugin.c │ └── oric_ch376_plugin.h └── twilighte_board │ ├── README.md │ ├── oric_twilighte_board_plugin.c │ ├── oric_twilighte_board_plugin.h │ └── twilighte.cfg ├── pravdisks └── .gitignore ├── render_gl.c ├── render_gl.h ├── render_null.c ├── render_null.h ├── render_sw.c ├── render_sw.h ├── render_sw8.c ├── render_sw8.h ├── roms ├── 8dos.sym ├── 8dos2.sym ├── Bas122de.pch ├── Bas122fr.pch ├── Bas122uk.pch ├── basic10.pch ├── basic10.sym ├── basic11b.pch ├── basic11b.sym ├── bd500.sym ├── cumana.sym ├── empty_orix.rom ├── jasmin.sym ├── kernel.rom ├── microdis.sym ├── orixbank1.rom ├── orixbank2.rom ├── orixbank3.rom ├── orixbank4.rom ├── orixbank5.rom ├── orixbank6.rom ├── orixbank7.rom ├── pravetzt-1.0.pch ├── pravetzt-1.0.sym ├── pravetzt.pch ├── pravetzt.sym ├── sedoric.sym ├── shell.rom ├── teleass.sym ├── telmon24.pch └── telmon24.sym ├── snapshot.c ├── snapshot.h ├── snapshots └── .gitignore ├── sublime ├── Oricutron-MinGW64-win32-gcc.sublime-build ├── Oricutron-MinGW64-win32.sublime-build ├── Oricutron-MinGW64-win64-gcc.sublime-build ├── Oricutron.sublime-project └── readme.txt ├── system.h ├── system_sdl.c ├── system_sdl.h ├── tape.c ├── tape.h ├── tapes └── .gitignore ├── teledisks └── .gitignore ├── ula.c ├── ula.h ├── usbdrive ├── bin │ ├── file │ ├── hello │ └── touch └── usr │ └── bin │ ├── 4kkong │ ├── ch376 │ ├── stormld │ └── tolsb ├── via.c ├── via.h ├── winicon.ico └── www ├── CMakeLists.txt ├── Oricutron.data ├── Oricutron.js ├── Oricutron.wasm ├── Readme.txt ├── dir.php ├── download.html ├── index.html ├── index_nophp.html └── oricutron.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cmake-sdl1-win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.github/workflows/cmake-sdl1-win64.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-sdl1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.github/workflows/cmake-sdl1.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-win64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.github/workflows/cmake-win64.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/.travis.yml -------------------------------------------------------------------------------- /6502.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6502.c -------------------------------------------------------------------------------- /6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6502.h -------------------------------------------------------------------------------- /6551.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6551.c -------------------------------------------------------------------------------- /6551.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6551.h -------------------------------------------------------------------------------- /6551_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6551_com.c -------------------------------------------------------------------------------- /6551_loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6551_loopback.c -------------------------------------------------------------------------------- /6551_modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/6551_modem.c -------------------------------------------------------------------------------- /8912.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/8912.c -------------------------------------------------------------------------------- /8912.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/8912.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /ChangeLog.txt_os4icon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ChangeLog.txt_os4icon.info -------------------------------------------------------------------------------- /ChangeLog.txt_pngicon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ChangeLog.txt_pngicon.info -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Makefile -------------------------------------------------------------------------------- /Oricutron.guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Oricutron.guide -------------------------------------------------------------------------------- /Oricutron.guide_os4icon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Oricutron.guide_os4icon.info -------------------------------------------------------------------------------- /Oricutron.guide_pngicon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Oricutron.guide_pngicon.info -------------------------------------------------------------------------------- /Oricutron_os4icon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Oricutron_os4icon.info -------------------------------------------------------------------------------- /Oricutron_pngicon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/Oricutron_pngicon.info -------------------------------------------------------------------------------- /ReadMe-LiesMich_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMe-LiesMich_DE.txt -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /ReadMe.txt_os4icon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMe.txt_os4icon.info -------------------------------------------------------------------------------- /ReadMe.txt_pngicon.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMe.txt_pngicon.info -------------------------------------------------------------------------------- /ReadMe2Guide.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMe2Guide.rexx -------------------------------------------------------------------------------- /ReadMeNinjaCMakeBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ReadMeNinjaCMakeBuild.md -------------------------------------------------------------------------------- /XCode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/.DS_Store -------------------------------------------------------------------------------- /XCode/Oricutron/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/.DS_Store -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcuserdata/j.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcuserdata/j.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcuserdata/torguet.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/project.xcworkspace/xcuserdata/torguet.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/xcshareddata/xcschemes/Oricutron.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/xcshareddata/xcschemes/Oricutron.xcscheme -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/j.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/j.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/torguet.xcuserdatad/xcschemes/Oricutron.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/torguet.xcuserdatad/xcschemes/Oricutron.xcscheme -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/torguet.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron.xcodeproj/xcuserdata/torguet.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo1024.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo128.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo256-1.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo256.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo512-1.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/logo512.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon16.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon32-1.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon32.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Images.xcassets/AppIcon.appiconset/winicon64.png -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Oricutron-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Oricutron-Info.plist -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/Oricutron-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/Oricutron-Prefix.pch -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/SDLMain.h -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/SDLMain.m -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XCode/Oricutron/Oricutron/winicon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/Oricutron/winicon.icns -------------------------------------------------------------------------------- /XCode/Oricutron/OricutronTests/OricutronTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/OricutronTests/OricutronTests-Info.plist -------------------------------------------------------------------------------- /XCode/Oricutron/OricutronTests/OricutronTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/XCode/Oricutron/OricutronTests/OricutronTests.m -------------------------------------------------------------------------------- /XCode/Oricutron/OricutronTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/avi.c -------------------------------------------------------------------------------- /avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/avi.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo This configure is a stub for travis 3 | 4 | -------------------------------------------------------------------------------- /disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/disk.c -------------------------------------------------------------------------------- /disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/disk.h -------------------------------------------------------------------------------- /disk_pravetz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/disk_pravetz.c -------------------------------------------------------------------------------- /disk_pravetz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/disk_pravetz.h -------------------------------------------------------------------------------- /disks/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/oricutronicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/doc/oricutronicon.png -------------------------------------------------------------------------------- /filereq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq.h -------------------------------------------------------------------------------- /filereq_amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_amiga.c -------------------------------------------------------------------------------- /filereq_beos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_beos.cpp -------------------------------------------------------------------------------- /filereq_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_gtk.c -------------------------------------------------------------------------------- /filereq_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_osx.m -------------------------------------------------------------------------------- /filereq_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_sdl.c -------------------------------------------------------------------------------- /filereq_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/filereq_win32.c -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/font.c -------------------------------------------------------------------------------- /gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui.c -------------------------------------------------------------------------------- /gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui.h -------------------------------------------------------------------------------- /gui_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui_android.c -------------------------------------------------------------------------------- /gui_beos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui_beos.cpp -------------------------------------------------------------------------------- /gui_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui_osx.m -------------------------------------------------------------------------------- /gui_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui_win.c -------------------------------------------------------------------------------- /gui_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/gui_x11.c -------------------------------------------------------------------------------- /images/avirec.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/avirec.bmp -------------------------------------------------------------------------------- /images/disk_active.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/disk_active.bmp -------------------------------------------------------------------------------- /images/disk_ejected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/disk_ejected.bmp -------------------------------------------------------------------------------- /images/disk_idle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/disk_idle.bmp -------------------------------------------------------------------------------- /images/disk_modactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/disk_modactive.bmp -------------------------------------------------------------------------------- /images/disk_modified.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/disk_modified.bmp -------------------------------------------------------------------------------- /images/gfx_atmoskbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/gfx_atmoskbd.bmp -------------------------------------------------------------------------------- /images/gfx_oric1kbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/gfx_oric1kbd.bmp -------------------------------------------------------------------------------- /images/gfx_pravetzkbd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/gfx_pravetzkbd.bmp -------------------------------------------------------------------------------- /images/status_bar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/status_bar.bmp -------------------------------------------------------------------------------- /images/statusbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/statusbar.bmp -------------------------------------------------------------------------------- /images/tape_ejected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/tape_ejected.bmp -------------------------------------------------------------------------------- /images/tape_pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/tape_pause.bmp -------------------------------------------------------------------------------- /images/tape_play.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/tape_play.bmp -------------------------------------------------------------------------------- /images/tape_record.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/tape_record.bmp -------------------------------------------------------------------------------- /images/tape_stop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/tape_stop.bmp -------------------------------------------------------------------------------- /images/winicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/images/winicon.bmp -------------------------------------------------------------------------------- /joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/joystick.c -------------------------------------------------------------------------------- /joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/joystick.h -------------------------------------------------------------------------------- /keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/keyboard.c -------------------------------------------------------------------------------- /keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/keyboard.h -------------------------------------------------------------------------------- /machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/machine.c -------------------------------------------------------------------------------- /machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/machine.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/main.h -------------------------------------------------------------------------------- /monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/monitor.c -------------------------------------------------------------------------------- /monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/monitor.h -------------------------------------------------------------------------------- /msgbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox.h -------------------------------------------------------------------------------- /msgbox_beos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_beos.cpp -------------------------------------------------------------------------------- /msgbox_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_gtk.c -------------------------------------------------------------------------------- /msgbox_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_os2.c -------------------------------------------------------------------------------- /msgbox_os4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_os4.c -------------------------------------------------------------------------------- /msgbox_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_osx.m -------------------------------------------------------------------------------- /msgbox_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_sdl.c -------------------------------------------------------------------------------- /msgbox_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msgbox_win32.c -------------------------------------------------------------------------------- /msvc/Oricutron.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/Oricutron.rc -------------------------------------------------------------------------------- /msvc/VS2017/Oricutron.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/Oricutron.sln -------------------------------------------------------------------------------- /msvc/VS2017/Oricutron.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/Oricutron.vcxproj -------------------------------------------------------------------------------- /msvc/VS2017/Oricutron.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/Oricutron.vcxproj.filters -------------------------------------------------------------------------------- /msvc/VS2017/make_links.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/make_links.cmd -------------------------------------------------------------------------------- /msvc/VS2017/msbuild_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/msbuild_all.cmd -------------------------------------------------------------------------------- /msvc/VS2017/msrebuild_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/msrebuild_all.cmd -------------------------------------------------------------------------------- /msvc/VS2017/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2017/readme.md -------------------------------------------------------------------------------- /msvc/VS2019/Oricutron.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/Oricutron.sln -------------------------------------------------------------------------------- /msvc/VS2019/Oricutron.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/Oricutron.vcxproj -------------------------------------------------------------------------------- /msvc/VS2019/Oricutron.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/Oricutron.vcxproj.filters -------------------------------------------------------------------------------- /msvc/VS2019/make_links.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/make_links.cmd -------------------------------------------------------------------------------- /msvc/VS2019/msbuild_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/msbuild_all.cmd -------------------------------------------------------------------------------- /msvc/VS2019/msrebuild_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/msrebuild_all.cmd -------------------------------------------------------------------------------- /msvc/VS2019/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/VS2019/readme.md -------------------------------------------------------------------------------- /msvc/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/dirent.h -------------------------------------------------------------------------------- /msvc/strcasecmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/strcasecmp.h -------------------------------------------------------------------------------- /msvc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/msvc/unistd.h -------------------------------------------------------------------------------- /oricutron.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/oricutron.cfg -------------------------------------------------------------------------------- /oricutron.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/oricutron.desktop -------------------------------------------------------------------------------- /oricutron.rc: -------------------------------------------------------------------------------- 1 | 101 ICON winicon.ico 2 | -------------------------------------------------------------------------------- /oricutron.rdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/oricutron.rdef -------------------------------------------------------------------------------- /plugins/ch376/ch376.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/ch376/ch376.c -------------------------------------------------------------------------------- /plugins/ch376/ch376.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/ch376/ch376.h -------------------------------------------------------------------------------- /plugins/ch376/oric_ch376_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/ch376/oric_ch376_plugin.c -------------------------------------------------------------------------------- /plugins/ch376/oric_ch376_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/ch376/oric_ch376_plugin.h -------------------------------------------------------------------------------- /plugins/twilighte_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/twilighte_board/README.md -------------------------------------------------------------------------------- /plugins/twilighte_board/oric_twilighte_board_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/twilighte_board/oric_twilighte_board_plugin.c -------------------------------------------------------------------------------- /plugins/twilighte_board/oric_twilighte_board_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/twilighte_board/oric_twilighte_board_plugin.h -------------------------------------------------------------------------------- /plugins/twilighte_board/twilighte.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/plugins/twilighte_board/twilighte.cfg -------------------------------------------------------------------------------- /pravdisks/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_gl.c -------------------------------------------------------------------------------- /render_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_gl.h -------------------------------------------------------------------------------- /render_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_null.c -------------------------------------------------------------------------------- /render_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_null.h -------------------------------------------------------------------------------- /render_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_sw.c -------------------------------------------------------------------------------- /render_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_sw.h -------------------------------------------------------------------------------- /render_sw8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_sw8.c -------------------------------------------------------------------------------- /render_sw8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/render_sw8.h -------------------------------------------------------------------------------- /roms/8dos.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/8dos.sym -------------------------------------------------------------------------------- /roms/8dos2.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/8dos2.sym -------------------------------------------------------------------------------- /roms/Bas122de.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/Bas122de.pch -------------------------------------------------------------------------------- /roms/Bas122fr.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/Bas122fr.pch -------------------------------------------------------------------------------- /roms/Bas122uk.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/Bas122uk.pch -------------------------------------------------------------------------------- /roms/basic10.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/basic10.pch -------------------------------------------------------------------------------- /roms/basic10.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/basic10.sym -------------------------------------------------------------------------------- /roms/basic11b.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/basic11b.pch -------------------------------------------------------------------------------- /roms/basic11b.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/basic11b.sym -------------------------------------------------------------------------------- /roms/bd500.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/bd500.sym -------------------------------------------------------------------------------- /roms/cumana.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/cumana.sym -------------------------------------------------------------------------------- /roms/empty_orix.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/empty_orix.rom -------------------------------------------------------------------------------- /roms/jasmin.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/jasmin.sym -------------------------------------------------------------------------------- /roms/kernel.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/kernel.rom -------------------------------------------------------------------------------- /roms/microdis.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/microdis.sym -------------------------------------------------------------------------------- /roms/orixbank1.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank1.rom -------------------------------------------------------------------------------- /roms/orixbank2.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank2.rom -------------------------------------------------------------------------------- /roms/orixbank3.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank3.rom -------------------------------------------------------------------------------- /roms/orixbank4.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank4.rom -------------------------------------------------------------------------------- /roms/orixbank5.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank5.rom -------------------------------------------------------------------------------- /roms/orixbank6.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank6.rom -------------------------------------------------------------------------------- /roms/orixbank7.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/orixbank7.rom -------------------------------------------------------------------------------- /roms/pravetzt-1.0.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/pravetzt-1.0.pch -------------------------------------------------------------------------------- /roms/pravetzt-1.0.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/pravetzt-1.0.sym -------------------------------------------------------------------------------- /roms/pravetzt.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/pravetzt.pch -------------------------------------------------------------------------------- /roms/pravetzt.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/pravetzt.sym -------------------------------------------------------------------------------- /roms/sedoric.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/sedoric.sym -------------------------------------------------------------------------------- /roms/shell.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/shell.rom -------------------------------------------------------------------------------- /roms/teleass.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/teleass.sym -------------------------------------------------------------------------------- /roms/telmon24.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/telmon24.pch -------------------------------------------------------------------------------- /roms/telmon24.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/roms/telmon24.sym -------------------------------------------------------------------------------- /snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/snapshot.c -------------------------------------------------------------------------------- /snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/snapshot.h -------------------------------------------------------------------------------- /snapshots/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sublime/Oricutron-MinGW64-win32-gcc.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/sublime/Oricutron-MinGW64-win32-gcc.sublime-build -------------------------------------------------------------------------------- /sublime/Oricutron-MinGW64-win32.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/sublime/Oricutron-MinGW64-win32.sublime-build -------------------------------------------------------------------------------- /sublime/Oricutron-MinGW64-win64-gcc.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/sublime/Oricutron-MinGW64-win64-gcc.sublime-build -------------------------------------------------------------------------------- /sublime/Oricutron.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/sublime/Oricutron.sublime-project -------------------------------------------------------------------------------- /sublime/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/sublime/readme.txt -------------------------------------------------------------------------------- /system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/system.h -------------------------------------------------------------------------------- /system_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/system_sdl.c -------------------------------------------------------------------------------- /system_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/system_sdl.h -------------------------------------------------------------------------------- /tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/tape.c -------------------------------------------------------------------------------- /tape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/tape.h -------------------------------------------------------------------------------- /tapes/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teledisks/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ula.c -------------------------------------------------------------------------------- /ula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/ula.h -------------------------------------------------------------------------------- /usbdrive/bin/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/bin/file -------------------------------------------------------------------------------- /usbdrive/bin/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/bin/hello -------------------------------------------------------------------------------- /usbdrive/bin/touch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/bin/touch -------------------------------------------------------------------------------- /usbdrive/usr/bin/4kkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/usr/bin/4kkong -------------------------------------------------------------------------------- /usbdrive/usr/bin/ch376: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/usr/bin/ch376 -------------------------------------------------------------------------------- /usbdrive/usr/bin/stormld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/usr/bin/stormld -------------------------------------------------------------------------------- /usbdrive/usr/bin/tolsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/usbdrive/usr/bin/tolsb -------------------------------------------------------------------------------- /via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/via.c -------------------------------------------------------------------------------- /via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/via.h -------------------------------------------------------------------------------- /winicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/winicon.ico -------------------------------------------------------------------------------- /www/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/CMakeLists.txt -------------------------------------------------------------------------------- /www/Oricutron.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/Oricutron.data -------------------------------------------------------------------------------- /www/Oricutron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/Oricutron.js -------------------------------------------------------------------------------- /www/Oricutron.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/Oricutron.wasm -------------------------------------------------------------------------------- /www/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/Readme.txt -------------------------------------------------------------------------------- /www/dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/dir.php -------------------------------------------------------------------------------- /www/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/download.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/index.html -------------------------------------------------------------------------------- /www/index_nophp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/index_nophp.html -------------------------------------------------------------------------------- /www/oricutron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/oricutron/HEAD/www/oricutron.html --------------------------------------------------------------------------------