gitextract_v8qf17it/ ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── TODO.md ├── gsplus/ │ ├── lib/ │ │ ├── 2mg.icns │ │ ├── 525.icns │ │ ├── MainMenu.nib │ │ ├── kegsicon.icns │ │ └── make_mac_icon │ └── src/ │ ├── AppDelegate.swift │ ├── Info.plist │ ├── Kegs-Bridging-Header.h │ ├── MainView.swift │ ├── Makefile │ ├── adb.c │ ├── applesingle.c │ ├── clock.c │ ├── comp_swift │ ├── compile_time.c │ ├── config.c │ ├── config.h │ ├── cp_gsplus_libs │ ├── debugger.c │ ├── defc.h │ ├── defcomm.h │ ├── defs_instr.h │ ├── dependency │ ├── disas.h │ ├── doc.c │ ├── dyna_filt.c │ ├── dyna_type.c │ ├── dyna_validate.c │ ├── dynapro.c │ ├── engine.h │ ├── engine_c.c │ ├── instable.h │ ├── iwm.c │ ├── iwm.h │ ├── joystick_driver.c │ ├── kegs.icns │ ├── kegsfont.h │ ├── kegswin.sln │ ├── kegswin.vcxproj │ ├── ldvars │ ├── macsnd_driver.c │ ├── mockingboard.c │ ├── moremem.c │ ├── op_routs.h │ ├── paddles.c │ ├── protos.h │ ├── protos_base.h │ ├── protos_macdriver.h │ ├── protos_macsnd_driver.h │ ├── protos_pulseaudio_driver.h │ ├── protos_windriver.h │ ├── protos_xdriver.h │ ├── pulseaudio_driver.c │ ├── scc.c │ ├── scc.h │ ├── scc_socket_driver.c │ ├── scc_unixdriver.c │ ├── scc_windriver.c │ ├── sim65816.c │ ├── size_c.h │ ├── smartport.c │ ├── sound.c │ ├── sound.h │ ├── sound_driver.c │ ├── style_check │ ├── undeflate.c │ ├── unshk.c │ ├── vars │ ├── vars_mac │ ├── vars_mac_x │ ├── vars_x86linux │ ├── video.c │ ├── voc.c │ ├── win32snd_driver.c │ ├── win_dirent.h │ ├── windriver.c │ ├── woz.c │ └── xdriver.c └── upstream/ ├── KEGS.version └── kegs/ ├── config.kegs ├── doc/ │ ├── CHANGES.txt │ ├── COPYING.txt │ ├── INTERNALS.iwm.txt │ ├── INTERNALS.overview.txt │ ├── INTERNALS.video.txt │ ├── INTERNALS.xdriver.txt │ ├── README.ROM.files.txt │ ├── README.a2.compatibility.txt │ ├── README.compile.txt │ ├── README.dynapro.txt │ ├── README.kegs.txt │ ├── README.linux.partitions.txt │ ├── README.mac.txt │ ├── README.serial.ports.txt │ └── README.win32.txt ├── lib/ │ ├── 2mg.icns │ ├── 525.icns │ ├── MainMenu.nib │ ├── kegsicon.icns │ └── make_mac_icon ├── src/ │ ├── AppDelegate.swift │ ├── Info.plist │ ├── Kegs-Bridging-Header.h │ ├── MainView.swift │ ├── Makefile │ ├── adb.c │ ├── applesingle.c │ ├── clock.c │ ├── comp_swift │ ├── compile_time.c │ ├── config.c │ ├── config.h │ ├── cp_kegs_libs │ ├── debugger.c │ ├── defc.h │ ├── defcomm.h │ ├── defs_instr.h │ ├── dependency │ ├── disas.h │ ├── doc.c │ ├── dyna_filt.c │ ├── dyna_type.c │ ├── dyna_validate.c │ ├── dynapro.c │ ├── engine.h │ ├── engine_c.c │ ├── instable.h │ ├── iwm.c │ ├── iwm.h │ ├── joystick_driver.c │ ├── kegsfont.h │ ├── kegswin.sln │ ├── kegswin.vcxproj │ ├── ldvars │ ├── macsnd_driver.c │ ├── mockingboard.c │ ├── moremem.c │ ├── op_routs.h │ ├── paddles.c │ ├── protos.h │ ├── protos_base.h │ ├── protos_macdriver.h │ ├── protos_macsnd_driver.h │ ├── protos_pulseaudio_driver.h │ ├── protos_windriver.h │ ├── protos_xdriver.h │ ├── pulseaudio_driver.c │ ├── scc.c │ ├── scc.h │ ├── scc_socket_driver.c │ ├── scc_unixdriver.c │ ├── scc_windriver.c │ ├── sim65816.c │ ├── size_c.h │ ├── smartport.c │ ├── sound.c │ ├── sound.h │ ├── sound_driver.c │ ├── style_check │ ├── undeflate.c │ ├── unshk.c │ ├── vars │ ├── vars_mac │ ├── vars_mac_x │ ├── vars_x86linux │ ├── video.c │ ├── voc.c │ ├── win32snd_driver.c │ ├── win_dirent.h │ ├── windriver.c │ ├── woz.c │ └── xdriver.c └── xkegs