├── BasiliskII.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── BasiliskII │ ├── PkgInfo │ └── Resources │ ├── BasiliskII.icns │ ├── Credits.html │ ├── English.lproj │ ├── InfoPlist.strings │ └── MainMenu.nib │ │ ├── Collapsed.tiff │ │ ├── Expanded.tiff │ │ ├── classes.nib │ │ ├── info.nib │ │ ├── objects.nib │ │ ├── resetH.tiff │ │ ├── resetN.tiff │ │ ├── shutdownH.tiff │ │ └── shutdownN.tiff │ ├── HowTo.html │ ├── README.txt │ ├── ToDo.html │ └── Versions.html ├── MPW-VM-KnownGood.dmg ├── MacII.ROM ├── MacIIci.ROM ├── Mini vMac 9590.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── mnvm9590 │ ├── PkgInfo │ └── Resources │ ├── English.lproj │ └── dummy.txt │ └── ICONAPPO.icns ├── PowerMac.ROM ├── README ├── SheepShaver.app └── Contents │ ├── Frameworks │ └── SDL.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── SDL │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_dreamcast.h │ │ │ ├── SDL_config_macos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_win32.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── SDLMain.nib │ │ │ │ └── objects.nib │ │ └── SDL │ │ └── Current │ ├── Info.plist │ ├── MacOS │ └── SheepShaver │ ├── PkgInfo │ └── Resources │ ├── English.lproj │ └── VMSettingsWindow.nib │ └── SheepShaver.icns ├── empw ├── hsync └── hsyncback /BasiliskII.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Info.plist -------------------------------------------------------------------------------- /BasiliskII.app/Contents/MacOS/BasiliskII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/MacOS/BasiliskII -------------------------------------------------------------------------------- /BasiliskII.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | -n APPL???? 2 | -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/BasiliskII.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/BasiliskII.icns -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/Credits.html -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/Collapsed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/Collapsed.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/Expanded.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/Expanded.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/objects.nib -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/resetH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/resetH.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/resetN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/resetN.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/shutdownH.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/shutdownH.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/shutdownN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/English.lproj/MainMenu.nib/shutdownN.tiff -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/HowTo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/HowTo.html -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/README.txt -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/ToDo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/ToDo.html -------------------------------------------------------------------------------- /BasiliskII.app/Contents/Resources/Versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/BasiliskII.app/Contents/Resources/Versions.html -------------------------------------------------------------------------------- /MPW-VM-KnownGood.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/MPW-VM-KnownGood.dmg -------------------------------------------------------------------------------- /MacII.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/MacII.ROM -------------------------------------------------------------------------------- /MacIIci.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/MacIIci.ROM -------------------------------------------------------------------------------- /Mini vMac 9590.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/Mini vMac 9590.app/Contents/Info.plist -------------------------------------------------------------------------------- /Mini vMac 9590.app/Contents/MacOS/mnvm9590: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/Mini vMac 9590.app/Contents/MacOS/mnvm9590 -------------------------------------------------------------------------------- /Mini vMac 9590.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Mini vMac 9590.app/Contents/Resources/English.lproj/dummy.txt: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /Mini vMac 9590.app/Contents/Resources/ICONAPPO.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/Mini vMac 9590.app/Contents/Resources/ICONAPPO.icns -------------------------------------------------------------------------------- /PowerMac.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/PowerMac.ROM -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/README -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/SDL: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_active.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_audio.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_byteorder.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_cdrom.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_macos.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_macosx.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_os2.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_config_win32.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_copying.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_cpuinfo.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_endian.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_error.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_events.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_getenv.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_joystick.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_keyboard.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_keysym.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_loadso.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_main.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_mouse.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_mutex.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_name.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_opengl.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_platform.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_quit.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_rwops.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_stdinc.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_syswm.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_thread.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_timer.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_types.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_version.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/SDL_video.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/begin_code.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Headers/close_code.h -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Resources/SDLMain.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/Resources/SDLMain.nib/objects.nib -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/SDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/A/SDL -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Frameworks/SDL.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Info.plist -------------------------------------------------------------------------------- /SheepShaver.app/Contents/MacOS/SheepShaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/MacOS/SheepShaver -------------------------------------------------------------------------------- /SheepShaver.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Resources/English.lproj/VMSettingsWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Resources/English.lproj/VMSettingsWindow.nib -------------------------------------------------------------------------------- /SheepShaver.app/Contents/Resources/SheepShaver.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/SheepShaver.app/Contents/Resources/SheepShaver.icns -------------------------------------------------------------------------------- /empw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/empw -------------------------------------------------------------------------------- /hsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/hsync -------------------------------------------------------------------------------- /hsyncback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/empw/HEAD/hsyncback --------------------------------------------------------------------------------