├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── css ├── catMediaIcon.css ├── catSystemIcon.css ├── catTextScreen.css ├── catVolume.css └── sosLogo.css ├── fonts ├── 3 │ ├── RETRO_NEKO_FONT8.ttf │ ├── SMILEBASIC.ttf │ ├── a.sfd │ └── a.ttf ├── N-Font.zip ├── N-Font │ ├── Example.txt │ ├── N-Font_Original.TTF │ ├── N-Font_Refine.TTF │ ├── PC8001_GrphKey.pdf │ ├── Readme.txt │ └── Sample.txt ├── X1-FONT.zip └── X1 │ ├── X1-FONT-PUA.ttf │ ├── X1-FONT-SYMBOL.ttf │ └── X1-FONT.ttf ├── img └── icon │ ├── カセットテープのフリーアイコン2.png │ ├── キーボードアイコン4.png │ ├── ゲームコントローラのアイコン.png │ ├── フロッピーディスクアイコン3.png │ ├── ボリュームOFFアイコン.png │ ├── ボリュームアイコン3.png │ ├── メモリアイコン1.png │ ├── 全画面表示ボタン2.png │ └── 歯車アイコン10.png ├── index.html ├── js ├── HuBasic │ ├── Disk │ │ ├── D88 │ │ │ ├── D88Types.mjs │ │ │ ├── DiskImageReaderD88.mjs │ │ │ └── DiskImageWriterD88.mjs │ │ ├── DataController.mjs │ │ ├── DiskError.mjs │ │ ├── DiskImage.mjs │ │ ├── DiskParameter.mjs │ │ ├── DiskType.mjs │ │ ├── DiskTypeEnum.mjs │ │ ├── Raw │ │ │ ├── DiskImageReaderRaw.mjs │ │ │ └── DiskImageWriterRaw.mjs │ │ ├── SectorData.mjs │ │ └── TrackFormat.mjs │ ├── HuBasic │ │ ├── Context.mjs │ │ ├── HuBasicDisk.mjs │ │ ├── HuBasicDiskEntry.mjs │ │ ├── HuBasicDiskImage.mjs │ │ ├── HuFileEntry.mjs │ │ ├── OpenEntryResult.mjs │ │ ├── OptionType.mjs │ │ ├── RunModeTypeEnum.mjs │ │ └── Setting.mjs │ └── Utils │ │ ├── Log.mjs │ │ ├── LogData.mjs │ │ ├── LogType.mjs │ │ ├── MiniOption.mjs │ │ └── Stream.mjs ├── cat │ ├── catAudio.js │ ├── catAudioWorkletProcessor.js │ ├── catDisZ80.js │ ├── catFont2Img.js │ ├── catFullScreen.js │ ├── catGamePad.js │ ├── catKey.js │ ├── catTextScreen.js │ ├── catTextScreenLayer.js │ └── catTextScreenLayerControler.js ├── jszip │ ├── jszip-utils.min.js │ └── jszip.min.js ├── sos │ ├── SOS.js │ ├── SOSBatchManager.js │ ├── SOSErrorCode.js │ ├── SOSInfomationBlock.js │ ├── SOSKeyCode.js │ ├── SOSTransient.js │ ├── SOSWorkAddr.js │ ├── config │ │ └── KeyConfig.js │ ├── taskContext.js │ ├── taskLineInput.js │ ├── taskPlatformMonitor.js │ └── util.mjs ├── taskMonitor.js └── z80Emu.js ├── psg.wasm ├── sample ├── AFTER_BUNER_S.obj ├── MIS_COMMANDER.obj └── RICH_OR_POOR.obj ├── sos.wasm ├── sos ├── CMakeLists.txt └── src │ ├── cat │ └── low │ │ ├── catLowBasicTypes.h │ │ ├── catLowMemory.cpp │ │ └── catLowMemory.h │ ├── clang.cpp │ ├── debug.cpp │ ├── emu2413 │ ├── LICENSE │ ├── emu2149.cpp │ └── emu2149.h │ ├── fmgen │ ├── diag.h │ ├── file.cpp │ ├── file.h │ ├── fmgen.cpp │ ├── fmgen.h │ ├── fmgen_types.h │ ├── fmgeninl.h │ ├── fmtimer.cpp │ ├── fmtimer.h │ ├── headers.h │ ├── misc.h │ ├── opm.cpp │ ├── opm.h │ ├── opna.cpp │ ├── opna.h │ ├── psg.cpp │ ├── psg.h │ ├── readme.txt │ └── 変更点.txt │ ├── mkWebAsm.bat │ ├── platform.cpp │ ├── platform.h │ ├── platform │ ├── MZ700 │ │ ├── cat8253.cpp │ │ ├── cat8253.h │ │ ├── catPlatformMZ700.cpp │ │ └── catPlatformMZ700.h │ ├── X1 │ │ ├── catCRTC.cpp │ │ ├── catCRTC.h │ │ ├── catPCG.cpp │ │ ├── catPCG.h │ │ ├── catPlatformX1.cpp │ │ └── catPlatformX1.h │ ├── catPlatformBase.h │ ├── catPlatformFactory.cpp │ ├── catPlatformFactory.h │ ├── catPratformTarget.h │ └── device │ │ ├── catCtc.cpp │ │ ├── catCtc.h │ │ ├── catIntel8253.cpp │ │ ├── catIntel8253.h │ │ ├── catOPM.cpp │ │ ├── catPsg.cpp │ │ ├── catTape.cpp │ │ ├── catTape.h │ │ ├── catTapeImage.cpp │ │ └── psg.cpp │ ├── psg.wasm │ ├── sos.cpp │ ├── sos.h │ ├── sos.wasm │ └── z80 │ ├── LICENSE.txt │ └── z80.hpp ├── test ├── SOS_TEST.d88 ├── mk.bat ├── test8255.bin ├── test8255.lst ├── test8255.z80 ├── testASCII.bin ├── testASCII.lst ├── testASCII.z80 ├── testBatErr.bin ├── testBatErr.lst ├── testBatErr.z80 ├── testCTC.bin ├── testCTC.lst ├── testCTC.z80 ├── testFLGet.bin ├── testFLGet.lst ├── testFLGet.z80 ├── testGRAM.bin ├── testGRAM.lst ├── testGRAM.z80 ├── testMZ700.bin ├── testMZ700.lst ├── testMZ700.z80 ├── testPad.bin ├── testPad.lst ├── testPad.z80 ├── testPause.bin ├── testPause.lst ├── testPause.obj ├── testPause.z80 ├── testRopen.bin ├── testRopen.lst ├── testRopen.z80 ├── testWopen.bin ├── testWopen.lst ├── testWopen.obj └── testWopen.z80 └── wav └── X1BEEP.WAV /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/README.md -------------------------------------------------------------------------------- /css/catMediaIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/css/catMediaIcon.css -------------------------------------------------------------------------------- /css/catSystemIcon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/css/catSystemIcon.css -------------------------------------------------------------------------------- /css/catTextScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/css/catTextScreen.css -------------------------------------------------------------------------------- /css/catVolume.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/css/catVolume.css -------------------------------------------------------------------------------- /css/sosLogo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/css/sosLogo.css -------------------------------------------------------------------------------- /fonts/3/RETRO_NEKO_FONT8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/3/RETRO_NEKO_FONT8.ttf -------------------------------------------------------------------------------- /fonts/3/SMILEBASIC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/3/SMILEBASIC.ttf -------------------------------------------------------------------------------- /fonts/3/a.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/3/a.sfd -------------------------------------------------------------------------------- /fonts/3/a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/3/a.ttf -------------------------------------------------------------------------------- /fonts/N-Font.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font.zip -------------------------------------------------------------------------------- /fonts/N-Font/Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/Example.txt -------------------------------------------------------------------------------- /fonts/N-Font/N-Font_Original.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/N-Font_Original.TTF -------------------------------------------------------------------------------- /fonts/N-Font/N-Font_Refine.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/N-Font_Refine.TTF -------------------------------------------------------------------------------- /fonts/N-Font/PC8001_GrphKey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/PC8001_GrphKey.pdf -------------------------------------------------------------------------------- /fonts/N-Font/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/Readme.txt -------------------------------------------------------------------------------- /fonts/N-Font/Sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/N-Font/Sample.txt -------------------------------------------------------------------------------- /fonts/X1-FONT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/X1-FONT.zip -------------------------------------------------------------------------------- /fonts/X1/X1-FONT-PUA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/X1/X1-FONT-PUA.ttf -------------------------------------------------------------------------------- /fonts/X1/X1-FONT-SYMBOL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/X1/X1-FONT-SYMBOL.ttf -------------------------------------------------------------------------------- /fonts/X1/X1-FONT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/fonts/X1/X1-FONT.ttf -------------------------------------------------------------------------------- /img/icon/カセットテープのフリーアイコン2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/カセットテープのフリーアイコン2.png -------------------------------------------------------------------------------- /img/icon/キーボードアイコン4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/キーボードアイコン4.png -------------------------------------------------------------------------------- /img/icon/ゲームコントローラのアイコン.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/ゲームコントローラのアイコン.png -------------------------------------------------------------------------------- /img/icon/フロッピーディスクアイコン3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/フロッピーディスクアイコン3.png -------------------------------------------------------------------------------- /img/icon/ボリュームOFFアイコン.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/ボリュームOFFアイコン.png -------------------------------------------------------------------------------- /img/icon/ボリュームアイコン3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/ボリュームアイコン3.png -------------------------------------------------------------------------------- /img/icon/メモリアイコン1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/メモリアイコン1.png -------------------------------------------------------------------------------- /img/icon/全画面表示ボタン2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/全画面表示ボタン2.png -------------------------------------------------------------------------------- /img/icon/歯車アイコン10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/img/icon/歯車アイコン10.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/index.html -------------------------------------------------------------------------------- /js/HuBasic/Disk/D88/D88Types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/D88/D88Types.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/D88/DiskImageReaderD88.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/D88/DiskImageReaderD88.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/D88/DiskImageWriterD88.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/D88/DiskImageWriterD88.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DataController.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DataController.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DiskError.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DiskError.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DiskImage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DiskImage.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DiskParameter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DiskParameter.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DiskType.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DiskType.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/DiskTypeEnum.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/DiskTypeEnum.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/Raw/DiskImageReaderRaw.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/Raw/DiskImageReaderRaw.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/Raw/DiskImageWriterRaw.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/Raw/DiskImageWriterRaw.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/SectorData.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/SectorData.mjs -------------------------------------------------------------------------------- /js/HuBasic/Disk/TrackFormat.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Disk/TrackFormat.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/Context.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/Context.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/HuBasicDisk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/HuBasicDisk.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/HuBasicDiskEntry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/HuBasicDiskEntry.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/HuBasicDiskImage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/HuBasicDiskImage.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/HuFileEntry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/HuFileEntry.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/OpenEntryResult.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/OpenEntryResult.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/OptionType.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/OptionType.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/RunModeTypeEnum.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/RunModeTypeEnum.mjs -------------------------------------------------------------------------------- /js/HuBasic/HuBasic/Setting.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/HuBasic/Setting.mjs -------------------------------------------------------------------------------- /js/HuBasic/Utils/Log.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Utils/Log.mjs -------------------------------------------------------------------------------- /js/HuBasic/Utils/LogData.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Utils/LogData.mjs -------------------------------------------------------------------------------- /js/HuBasic/Utils/LogType.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Utils/LogType.mjs -------------------------------------------------------------------------------- /js/HuBasic/Utils/MiniOption.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Utils/MiniOption.mjs -------------------------------------------------------------------------------- /js/HuBasic/Utils/Stream.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/HuBasic/Utils/Stream.mjs -------------------------------------------------------------------------------- /js/cat/catAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catAudio.js -------------------------------------------------------------------------------- /js/cat/catAudioWorkletProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catAudioWorkletProcessor.js -------------------------------------------------------------------------------- /js/cat/catDisZ80.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catDisZ80.js -------------------------------------------------------------------------------- /js/cat/catFont2Img.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catFont2Img.js -------------------------------------------------------------------------------- /js/cat/catFullScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catFullScreen.js -------------------------------------------------------------------------------- /js/cat/catGamePad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catGamePad.js -------------------------------------------------------------------------------- /js/cat/catKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catKey.js -------------------------------------------------------------------------------- /js/cat/catTextScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catTextScreen.js -------------------------------------------------------------------------------- /js/cat/catTextScreenLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catTextScreenLayer.js -------------------------------------------------------------------------------- /js/cat/catTextScreenLayerControler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/cat/catTextScreenLayerControler.js -------------------------------------------------------------------------------- /js/jszip/jszip-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/jszip/jszip-utils.min.js -------------------------------------------------------------------------------- /js/jszip/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/jszip/jszip.min.js -------------------------------------------------------------------------------- /js/sos/SOS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOS.js -------------------------------------------------------------------------------- /js/sos/SOSBatchManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSBatchManager.js -------------------------------------------------------------------------------- /js/sos/SOSErrorCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSErrorCode.js -------------------------------------------------------------------------------- /js/sos/SOSInfomationBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSInfomationBlock.js -------------------------------------------------------------------------------- /js/sos/SOSKeyCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSKeyCode.js -------------------------------------------------------------------------------- /js/sos/SOSTransient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSTransient.js -------------------------------------------------------------------------------- /js/sos/SOSWorkAddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/SOSWorkAddr.js -------------------------------------------------------------------------------- /js/sos/config/KeyConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/config/KeyConfig.js -------------------------------------------------------------------------------- /js/sos/taskContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/taskContext.js -------------------------------------------------------------------------------- /js/sos/taskLineInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/taskLineInput.js -------------------------------------------------------------------------------- /js/sos/taskPlatformMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/taskPlatformMonitor.js -------------------------------------------------------------------------------- /js/sos/util.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/sos/util.mjs -------------------------------------------------------------------------------- /js/taskMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/taskMonitor.js -------------------------------------------------------------------------------- /js/z80Emu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/js/z80Emu.js -------------------------------------------------------------------------------- /psg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/psg.wasm -------------------------------------------------------------------------------- /sample/AFTER_BUNER_S.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sample/AFTER_BUNER_S.obj -------------------------------------------------------------------------------- /sample/MIS_COMMANDER.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sample/MIS_COMMANDER.obj -------------------------------------------------------------------------------- /sample/RICH_OR_POOR.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sample/RICH_OR_POOR.obj -------------------------------------------------------------------------------- /sos.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos.wasm -------------------------------------------------------------------------------- /sos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/CMakeLists.txt -------------------------------------------------------------------------------- /sos/src/cat/low/catLowBasicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/cat/low/catLowBasicTypes.h -------------------------------------------------------------------------------- /sos/src/cat/low/catLowMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/cat/low/catLowMemory.cpp -------------------------------------------------------------------------------- /sos/src/cat/low/catLowMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/cat/low/catLowMemory.h -------------------------------------------------------------------------------- /sos/src/clang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/clang.cpp -------------------------------------------------------------------------------- /sos/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/debug.cpp -------------------------------------------------------------------------------- /sos/src/emu2413/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/emu2413/LICENSE -------------------------------------------------------------------------------- /sos/src/emu2413/emu2149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/emu2413/emu2149.cpp -------------------------------------------------------------------------------- /sos/src/emu2413/emu2149.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/emu2413/emu2149.h -------------------------------------------------------------------------------- /sos/src/fmgen/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/diag.h -------------------------------------------------------------------------------- /sos/src/fmgen/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/file.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/file.h -------------------------------------------------------------------------------- /sos/src/fmgen/fmgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmgen.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/fmgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmgen.h -------------------------------------------------------------------------------- /sos/src/fmgen/fmgen_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmgen_types.h -------------------------------------------------------------------------------- /sos/src/fmgen/fmgeninl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmgeninl.h -------------------------------------------------------------------------------- /sos/src/fmgen/fmtimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmtimer.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/fmtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/fmtimer.h -------------------------------------------------------------------------------- /sos/src/fmgen/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/headers.h -------------------------------------------------------------------------------- /sos/src/fmgen/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/misc.h -------------------------------------------------------------------------------- /sos/src/fmgen/opm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/opm.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/opm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/opm.h -------------------------------------------------------------------------------- /sos/src/fmgen/opna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/opna.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/opna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/opna.h -------------------------------------------------------------------------------- /sos/src/fmgen/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/psg.cpp -------------------------------------------------------------------------------- /sos/src/fmgen/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/psg.h -------------------------------------------------------------------------------- /sos/src/fmgen/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/readme.txt -------------------------------------------------------------------------------- /sos/src/fmgen/変更点.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/fmgen/変更点.txt -------------------------------------------------------------------------------- /sos/src/mkWebAsm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/mkWebAsm.bat -------------------------------------------------------------------------------- /sos/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform.cpp -------------------------------------------------------------------------------- /sos/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform.h -------------------------------------------------------------------------------- /sos/src/platform/MZ700/cat8253.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/MZ700/cat8253.cpp -------------------------------------------------------------------------------- /sos/src/platform/MZ700/cat8253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/MZ700/cat8253.h -------------------------------------------------------------------------------- /sos/src/platform/MZ700/catPlatformMZ700.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/MZ700/catPlatformMZ700.cpp -------------------------------------------------------------------------------- /sos/src/platform/MZ700/catPlatformMZ700.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/MZ700/catPlatformMZ700.h -------------------------------------------------------------------------------- /sos/src/platform/X1/catCRTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catCRTC.cpp -------------------------------------------------------------------------------- /sos/src/platform/X1/catCRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catCRTC.h -------------------------------------------------------------------------------- /sos/src/platform/X1/catPCG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catPCG.cpp -------------------------------------------------------------------------------- /sos/src/platform/X1/catPCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catPCG.h -------------------------------------------------------------------------------- /sos/src/platform/X1/catPlatformX1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catPlatformX1.cpp -------------------------------------------------------------------------------- /sos/src/platform/X1/catPlatformX1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/X1/catPlatformX1.h -------------------------------------------------------------------------------- /sos/src/platform/catPlatformBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/catPlatformBase.h -------------------------------------------------------------------------------- /sos/src/platform/catPlatformFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/catPlatformFactory.cpp -------------------------------------------------------------------------------- /sos/src/platform/catPlatformFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/catPlatformFactory.h -------------------------------------------------------------------------------- /sos/src/platform/catPratformTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/catPratformTarget.h -------------------------------------------------------------------------------- /sos/src/platform/device/catCtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catCtc.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/catCtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catCtc.h -------------------------------------------------------------------------------- /sos/src/platform/device/catIntel8253.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catIntel8253.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/catIntel8253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catIntel8253.h -------------------------------------------------------------------------------- /sos/src/platform/device/catOPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catOPM.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/catPsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catPsg.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/catTape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catTape.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/catTape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catTape.h -------------------------------------------------------------------------------- /sos/src/platform/device/catTapeImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/catTapeImage.cpp -------------------------------------------------------------------------------- /sos/src/platform/device/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/platform/device/psg.cpp -------------------------------------------------------------------------------- /sos/src/psg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/psg.wasm -------------------------------------------------------------------------------- /sos/src/sos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/sos.cpp -------------------------------------------------------------------------------- /sos/src/sos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/sos.h -------------------------------------------------------------------------------- /sos/src/sos.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/sos.wasm -------------------------------------------------------------------------------- /sos/src/z80/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/z80/LICENSE.txt -------------------------------------------------------------------------------- /sos/src/z80/z80.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/sos/src/z80/z80.hpp -------------------------------------------------------------------------------- /test/SOS_TEST.d88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/SOS_TEST.d88 -------------------------------------------------------------------------------- /test/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/mk.bat -------------------------------------------------------------------------------- /test/test8255.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/test8255.bin -------------------------------------------------------------------------------- /test/test8255.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/test8255.lst -------------------------------------------------------------------------------- /test/test8255.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/test8255.z80 -------------------------------------------------------------------------------- /test/testASCII.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testASCII.bin -------------------------------------------------------------------------------- /test/testASCII.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testASCII.lst -------------------------------------------------------------------------------- /test/testASCII.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testASCII.z80 -------------------------------------------------------------------------------- /test/testBatErr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testBatErr.bin -------------------------------------------------------------------------------- /test/testBatErr.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testBatErr.lst -------------------------------------------------------------------------------- /test/testBatErr.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testBatErr.z80 -------------------------------------------------------------------------------- /test/testCTC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testCTC.bin -------------------------------------------------------------------------------- /test/testCTC.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testCTC.lst -------------------------------------------------------------------------------- /test/testCTC.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testCTC.z80 -------------------------------------------------------------------------------- /test/testFLGet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testFLGet.bin -------------------------------------------------------------------------------- /test/testFLGet.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testFLGet.lst -------------------------------------------------------------------------------- /test/testFLGet.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testFLGet.z80 -------------------------------------------------------------------------------- /test/testGRAM.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testGRAM.bin -------------------------------------------------------------------------------- /test/testGRAM.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testGRAM.lst -------------------------------------------------------------------------------- /test/testGRAM.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testGRAM.z80 -------------------------------------------------------------------------------- /test/testMZ700.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testMZ700.bin -------------------------------------------------------------------------------- /test/testMZ700.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testMZ700.lst -------------------------------------------------------------------------------- /test/testMZ700.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testMZ700.z80 -------------------------------------------------------------------------------- /test/testPad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPad.bin -------------------------------------------------------------------------------- /test/testPad.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPad.lst -------------------------------------------------------------------------------- /test/testPad.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPad.z80 -------------------------------------------------------------------------------- /test/testPause.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPause.bin -------------------------------------------------------------------------------- /test/testPause.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPause.lst -------------------------------------------------------------------------------- /test/testPause.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPause.obj -------------------------------------------------------------------------------- /test/testPause.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testPause.z80 -------------------------------------------------------------------------------- /test/testRopen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testRopen.bin -------------------------------------------------------------------------------- /test/testRopen.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testRopen.lst -------------------------------------------------------------------------------- /test/testRopen.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testRopen.z80 -------------------------------------------------------------------------------- /test/testWopen.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testWopen.bin -------------------------------------------------------------------------------- /test/testWopen.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testWopen.lst -------------------------------------------------------------------------------- /test/testWopen.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testWopen.obj -------------------------------------------------------------------------------- /test/testWopen.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/test/testWopen.z80 -------------------------------------------------------------------------------- /wav/X1BEEP.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W88DodPECuThLOl/SOS_SWORDforWeb/HEAD/wav/X1BEEP.WAV --------------------------------------------------------------------------------