jsbeeb 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +15 -0
- package/.git-blame-ignore-revs +3 -0
- package/.github/copilot-instructions.md +94 -0
- package/.github/workflows/claude-issue-triage.yml +105 -0
- package/.github/workflows/claude.yml +63 -0
- package/.github/workflows/release-please.yml +75 -0
- package/.github/workflows/test-and-deploy.yml +86 -0
- package/.gitmodules +6 -0
- package/.husky/pre-commit +1 -0
- package/.idea/codeStyleSettings.xml +9 -0
- package/.idea/codeStyles/Project.xml +62 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/compiler.xml +22 -0
- package/.idea/copyright/profiles_settings.xml +3 -0
- package/.idea/encodings.xml +6 -0
- package/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/jsLibraryMappings.xml +6 -0
- package/.idea/jsLinters/jshint.xml +85 -0
- package/.idea/jsLinters/jslint.xml +15 -0
- package/.idea/jsbeeb.iml +11 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +7 -0
- package/.idea/runConfigurations/Debug.xml +5 -0
- package/.idea/scopes/scope_settings.xml +5 -0
- package/.idea/vcs.xml +8 -0
- package/.prettierignore +4 -0
- package/.prettierrc.json +1 -0
- package/.release-please-manifest.json +3 -0
- package/.vscode/launch.json +14 -0
- package/.vscode/settings.json +6 -0
- package/CHANGELOG.md +32 -0
- package/CLAUDE.md +136 -0
- package/COPYING +674 -0
- package/Dockerfile +22 -0
- package/Makefile +30 -0
- package/README.md +259 -0
- package/docker/nginx-default.conf +10 -0
- package/docs/pal-comb-filter-research.md +129 -0
- package/docs/pal-simulation-design.md +368 -0
- package/eslint.config.js +35 -0
- package/index.html +954 -0
- package/jsconfig.json +10 -0
- package/package.json +102 -0
- package/public/discs/README.Irq-Timing +3 -0
- package/public/discs/README.bcdtest +5 -0
- package/public/discs/README.elite +6 -0
- package/public/discs/README.eng_test +3 -0
- package/public/discs/README.protection +7 -0
- package/public/favicon.ico +0 -0
- package/public/images/botbar.png +0 -0
- package/public/images/cub-monitor.png +0 -0
- package/public/images/jsbeeb-example.png +0 -0
- package/public/images/placeholder.png +0 -0
- package/public/images/red-off-16.png +0 -0
- package/public/images/red-on-16.png +0 -0
- package/public/images/sb/CD-left.jpg +0 -0
- package/public/images/sb/CD-right.jpg +0 -0
- package/public/images/sidebar.png +0 -0
- package/public/images/tv.png +0 -0
- package/public/images/yellow-off-16.png +0 -0
- package/public/images/yellow-on-16.png +0 -0
- package/public/jsbeeb-icon.png +0 -0
- package/public/robots.txt +3 -0
- package/public/roms/ADFS1-53.rom +0 -0
- package/public/roms/BASIC.ROM +0 -0
- package/public/roms/README +4 -0
- package/public/roms/a01/BASIC1.rom +0 -0
- package/public/roms/ample.rom +0 -0
- package/public/roms/ats-3.0.rom +0 -0
- package/public/roms/b/DFS-0.9.rom +0 -0
- package/public/roms/b/DFS-1.2.rom +0 -0
- package/public/roms/b1770/dfs1770.rom +0 -0
- package/public/roms/b1770/zADFS.ROM +0 -0
- package/public/roms/bp/dfs.rom +0 -0
- package/public/roms/bp/zADFS.ROM +0 -0
- package/public/roms/bpos.rom +0 -0
- package/public/roms/compact/adfs210.rom +0 -0
- package/public/roms/compact/basic48.rom +0 -0
- package/public/roms/compact/basic486.rom +0 -0
- package/public/roms/compact/os51.rom +0 -0
- package/public/roms/compact/utils.rom +0 -0
- package/public/roms/deos.rom +0 -0
- package/public/roms/master/anfs-4.25.rom +0 -0
- package/public/roms/master/mos.txt +68819 -0
- package/public/roms/master/mos3.20 +0 -0
- package/public/roms/os.rom +0 -0
- package/public/roms/os01.rom +0 -0
- package/public/roms/tube/6502Tube.rom +0 -0
- package/public/roms/tube/ARMeval_100.rom +0 -0
- package/public/roms/tube/BIOS.ROM +0 -0
- package/public/roms/tube/ReCo6502ROM_816 +0 -0
- package/public/roms/tube/Z80_120.rom +0 -0
- package/public/roms/us/USBASIC.rom +0 -0
- package/public/roms/us/USDNFS.rom +0 -0
- package/public/roms/usmos.rom +0 -0
- package/public/sounds/disc525/motor.wav +0 -0
- package/public/sounds/disc525/motoroff.wav +0 -0
- package/public/sounds/disc525/motoron.wav +0 -0
- package/public/sounds/disc525/seek.wav +0 -0
- package/public/sounds/disc525/seek2.wav +0 -0
- package/public/sounds/disc525/seek3.wav +0 -0
- package/public/sounds/disc525/step.wav +0 -0
- package/public/teletext/txt0.dat +0 -0
- package/public/teletext/txt1.dat +0 -0
- package/public/teletext/txt2.dat +0 -0
- package/public/teletext/txt3.dat +0 -0
- package/release-please-config.json +13 -0
- package/run-container.sh +92 -0
- package/src/6502.js +1347 -0
- package/src/6502.opcodes.js +1411 -0
- package/src/acia.js +261 -0
- package/src/adc.js +149 -0
- package/src/analogue-source.js +21 -0
- package/src/app/app.js +175 -0
- package/src/app/electron.js +20 -0
- package/src/app/preload.js +8 -0
- package/src/app-bench.js +33 -0
- package/src/basic/multiline-tetris +9 -0
- package/src/basic-tokenise.js +104 -0
- package/src/canvas.js +177 -0
- package/src/cmos.js +141 -0
- package/src/config.js +165 -0
- package/src/ddnoise.js +138 -0
- package/src/disc-drive.js +371 -0
- package/src/disc-hfe.js +396 -0
- package/src/disc.js +997 -0
- package/src/econet/L3FS.dat +0 -0
- package/src/econet/scsi.dat +0 -0
- package/src/econet.js +714 -0
- package/src/fake6502.js +32 -0
- package/src/fdc.js +248 -0
- package/src/filestore.js +666 -0
- package/src/gamepad-source.js +59 -0
- package/src/gamepads.js +268 -0
- package/src/google-drive.js +160 -0
- package/src/intel-fdc.js +1717 -0
- package/src/jsbeeb.css +363 -0
- package/src/keyboard.js +411 -0
- package/src/lib/README +1 -0
- package/src/lib/webgl-debug.js +911 -0
- package/src/main.js +1759 -0
- package/src/microphone-input.js +149 -0
- package/src/models.js +200 -0
- package/src/mouse-joystick-source.js +107 -0
- package/src/music5000-worklet.js +43 -0
- package/src/music5000.js +207 -0
- package/src/scheduler.js +148 -0
- package/src/serial.js +31 -0
- package/src/soundchip.js +314 -0
- package/src/sth.js +59 -0
- package/src/tapes.js +265 -0
- package/src/teletext.js +348 -0
- package/src/teletext_adaptor.js +172 -0
- package/src/teletext_data.js +1064 -0
- package/src/touchscreen.js +86 -0
- package/src/tube.js +349 -0
- package/src/url-params.js +256 -0
- package/src/utils.js +1090 -0
- package/src/via.js +702 -0
- package/src/video-filters/pal-composite.js +94 -0
- package/src/video-filters/passthrough-filter.js +70 -0
- package/src/video-filters/shaders/pal-composite.frag.glsl +147 -0
- package/src/video-filters/shaders/pal-composite.vert.glsl +8 -0
- package/src/video-filters/shaders/passthrough.frag.glsl +6 -0
- package/src/video-filters/shaders/passthrough.vert.glsl +7 -0
- package/src/video.js +794 -0
- package/src/wd-fdc.js +1344 -0
- package/src/web/audio-handler.js +146 -0
- package/src/web/audio-renderer.js +115 -0
- package/src/web/debug.js +529 -0
- package/tests/integration/RmwX.asm +47 -0
- package/tests/integration/TestInstructionsSource +27 -0
- package/tests/integration/TestTimingsResults +27 -0
- package/tests/integration/TestTimingsSource +61 -0
- package/tests/integration/bcd.js +23 -0
- package/tests/integration/dormann.js +101 -0
- package/tests/integration/dp111timing.js +42 -0
- package/tests/integration/ensure-submodules.js +25 -0
- package/tests/integration/nops.bas +119 -0
- package/tests/integration/nops.js +24 -0
- package/tests/integration/protection.js +26 -0
- package/tests/integration/rmw.js +69 -0
- package/tests/integration/teletext/expected_bug_469.png +0 -0
- package/tests/integration/teletext/expected_flash_0.png +0 -0
- package/tests/integration/teletext/expected_flash_1.png +0 -0
- package/tests/integration/teletext/expected_hoglet_held_char.png +0 -0
- package/tests/integration/teletext/expected_reveal_flash_0.png +0 -0
- package/tests/integration/teletext/expected_reveal_flash_1.png +0 -0
- package/tests/integration/teletext.js +126 -0
- package/tests/integration/timings.js +56 -0
- package/tests/integration/via.js +1125 -0
- package/tests/suite/README.md +7 -0
- package/tests/suite/Test Suite 2.15.txt +373 -0
- package/tests/suite/bin/ start +0 -0
- package/tests/suite/bin/adca +0 -0
- package/tests/suite/bin/adcax +0 -0
- package/tests/suite/bin/adcay +0 -0
- package/tests/suite/bin/adcb +0 -0
- package/tests/suite/bin/adcix +0 -0
- package/tests/suite/bin/adciy +0 -0
- package/tests/suite/bin/adcz +0 -0
- package/tests/suite/bin/adczx +0 -0
- package/tests/suite/bin/alrb +0 -0
- package/tests/suite/bin/ancb +0 -0
- package/tests/suite/bin/anda +0 -0
- package/tests/suite/bin/andax +0 -0
- package/tests/suite/bin/anday +0 -0
- package/tests/suite/bin/andb +0 -0
- package/tests/suite/bin/andix +0 -0
- package/tests/suite/bin/andiy +0 -0
- package/tests/suite/bin/andz +0 -0
- package/tests/suite/bin/andzx +0 -0
- package/tests/suite/bin/aneb +0 -0
- package/tests/suite/bin/arrb +0 -0
- package/tests/suite/bin/asla +0 -0
- package/tests/suite/bin/aslax +0 -0
- package/tests/suite/bin/asln +0 -0
- package/tests/suite/bin/aslz +0 -0
- package/tests/suite/bin/aslzx +0 -0
- package/tests/suite/bin/asoa +0 -0
- package/tests/suite/bin/asoax +0 -0
- package/tests/suite/bin/asoay +0 -0
- package/tests/suite/bin/asoix +0 -0
- package/tests/suite/bin/asoiy +0 -0
- package/tests/suite/bin/asoz +0 -0
- package/tests/suite/bin/asozx +0 -0
- package/tests/suite/bin/axsa +0 -0
- package/tests/suite/bin/axsix +0 -0
- package/tests/suite/bin/axsz +0 -0
- package/tests/suite/bin/axszy +0 -0
- package/tests/suite/bin/bccr +0 -0
- package/tests/suite/bin/bcsr +0 -0
- package/tests/suite/bin/beqr +0 -0
- package/tests/suite/bin/bita +0 -0
- package/tests/suite/bin/bitz +0 -0
- package/tests/suite/bin/bmir +0 -0
- package/tests/suite/bin/bner +0 -0
- package/tests/suite/bin/bplr +0 -0
- package/tests/suite/bin/branchwrap +0 -0
- package/tests/suite/bin/brkn +0 -0
- package/tests/suite/bin/bvcr +0 -0
- package/tests/suite/bin/bvsr +0 -0
- package/tests/suite/bin/cia1pb6 +0 -0
- package/tests/suite/bin/cia1pb7 +0 -0
- package/tests/suite/bin/cia1ta +0 -0
- package/tests/suite/bin/cia1tab +0 -0
- package/tests/suite/bin/cia1tb +0 -0
- package/tests/suite/bin/cia1tb123 +0 -0
- package/tests/suite/bin/cia2pb6 +0 -0
- package/tests/suite/bin/cia2pb7 +0 -0
- package/tests/suite/bin/cia2ta +0 -0
- package/tests/suite/bin/cia2tb +0 -0
- package/tests/suite/bin/cia2tb123 +0 -0
- package/tests/suite/bin/clcn +0 -0
- package/tests/suite/bin/cldn +0 -0
- package/tests/suite/bin/clin +0 -0
- package/tests/suite/bin/clvn +0 -0
- package/tests/suite/bin/cmpa +0 -0
- package/tests/suite/bin/cmpax +0 -0
- package/tests/suite/bin/cmpay +0 -0
- package/tests/suite/bin/cmpb +0 -0
- package/tests/suite/bin/cmpix +0 -0
- package/tests/suite/bin/cmpiy +0 -0
- package/tests/suite/bin/cmpz +0 -0
- package/tests/suite/bin/cmpzx +0 -0
- package/tests/suite/bin/cntdef +0 -0
- package/tests/suite/bin/cnto2 +0 -0
- package/tests/suite/bin/cpuport +0 -0
- package/tests/suite/bin/cputiming +0 -0
- package/tests/suite/bin/cpxa +0 -0
- package/tests/suite/bin/cpxb +0 -0
- package/tests/suite/bin/cpxz +0 -0
- package/tests/suite/bin/cpya +0 -0
- package/tests/suite/bin/cpyb +0 -0
- package/tests/suite/bin/cpyz +0 -0
- package/tests/suite/bin/dcma +0 -0
- package/tests/suite/bin/dcmax +0 -0
- package/tests/suite/bin/dcmay +0 -0
- package/tests/suite/bin/dcmix +0 -0
- package/tests/suite/bin/dcmiy +0 -0
- package/tests/suite/bin/dcmz +0 -0
- package/tests/suite/bin/dcmzx +0 -0
- package/tests/suite/bin/deca +0 -0
- package/tests/suite/bin/decax +0 -0
- package/tests/suite/bin/decz +0 -0
- package/tests/suite/bin/deczx +0 -0
- package/tests/suite/bin/dexn +0 -0
- package/tests/suite/bin/deyn +0 -0
- package/tests/suite/bin/eora +0 -0
- package/tests/suite/bin/eorax +0 -0
- package/tests/suite/bin/eoray +0 -0
- package/tests/suite/bin/eorb +0 -0
- package/tests/suite/bin/eorix +0 -0
- package/tests/suite/bin/eoriy +0 -0
- package/tests/suite/bin/eorz +0 -0
- package/tests/suite/bin/eorzx +0 -0
- package/tests/suite/bin/finish +0 -0
- package/tests/suite/bin/flipos +0 -0
- package/tests/suite/bin/icr01 +0 -0
- package/tests/suite/bin/imr +0 -0
- package/tests/suite/bin/inca +0 -0
- package/tests/suite/bin/incax +0 -0
- package/tests/suite/bin/incz +0 -0
- package/tests/suite/bin/inczx +0 -0
- package/tests/suite/bin/insa +0 -0
- package/tests/suite/bin/insax +0 -0
- package/tests/suite/bin/insay +0 -0
- package/tests/suite/bin/insix +0 -0
- package/tests/suite/bin/insiy +0 -0
- package/tests/suite/bin/insz +0 -0
- package/tests/suite/bin/inszx +0 -0
- package/tests/suite/bin/inxn +0 -0
- package/tests/suite/bin/inyn +0 -0
- package/tests/suite/bin/irq +0 -0
- package/tests/suite/bin/jmpi +0 -0
- package/tests/suite/bin/jmpw +0 -0
- package/tests/suite/bin/jsrw +0 -0
- package/tests/suite/bin/lasay +0 -0
- package/tests/suite/bin/laxa +0 -0
- package/tests/suite/bin/laxay +0 -0
- package/tests/suite/bin/laxix +0 -0
- package/tests/suite/bin/laxiy +0 -0
- package/tests/suite/bin/laxz +0 -0
- package/tests/suite/bin/laxzy +0 -0
- package/tests/suite/bin/ldaa +0 -0
- package/tests/suite/bin/ldaax +0 -0
- package/tests/suite/bin/ldaay +0 -0
- package/tests/suite/bin/ldab +0 -0
- package/tests/suite/bin/ldaix +0 -0
- package/tests/suite/bin/ldaiy +0 -0
- package/tests/suite/bin/ldaz +0 -0
- package/tests/suite/bin/ldazx +0 -0
- package/tests/suite/bin/ldxa +0 -0
- package/tests/suite/bin/ldxay +0 -0
- package/tests/suite/bin/ldxb +0 -0
- package/tests/suite/bin/ldxz +0 -0
- package/tests/suite/bin/ldxzy +0 -0
- package/tests/suite/bin/ldya +0 -0
- package/tests/suite/bin/ldyax +0 -0
- package/tests/suite/bin/ldyb +0 -0
- package/tests/suite/bin/ldyz +0 -0
- package/tests/suite/bin/ldyzx +0 -0
- package/tests/suite/bin/loadth +0 -0
- package/tests/suite/bin/lsea +0 -0
- package/tests/suite/bin/lseax +0 -0
- package/tests/suite/bin/lseay +0 -0
- package/tests/suite/bin/lseix +0 -0
- package/tests/suite/bin/lseiy +0 -0
- package/tests/suite/bin/lsez +0 -0
- package/tests/suite/bin/lsezx +0 -0
- package/tests/suite/bin/lsra +0 -0
- package/tests/suite/bin/lsrax +0 -0
- package/tests/suite/bin/lsrn +0 -0
- package/tests/suite/bin/lsrz +0 -0
- package/tests/suite/bin/lsrzx +0 -0
- package/tests/suite/bin/lxab +0 -0
- package/tests/suite/bin/mmu +0 -0
- package/tests/suite/bin/mmufetch +0 -0
- package/tests/suite/bin/nmi +0 -0
- package/tests/suite/bin/nopa +0 -0
- package/tests/suite/bin/nopax +0 -0
- package/tests/suite/bin/nopb +0 -0
- package/tests/suite/bin/nopn +0 -0
- package/tests/suite/bin/nopz +0 -0
- package/tests/suite/bin/nopzx +0 -0
- package/tests/suite/bin/oneshot +0 -0
- package/tests/suite/bin/oraa +0 -0
- package/tests/suite/bin/oraax +0 -0
- package/tests/suite/bin/oraay +0 -0
- package/tests/suite/bin/orab +0 -0
- package/tests/suite/bin/oraix +0 -0
- package/tests/suite/bin/oraiy +0 -0
- package/tests/suite/bin/oraz +0 -0
- package/tests/suite/bin/orazx +0 -0
- package/tests/suite/bin/phan +0 -0
- package/tests/suite/bin/phpn +0 -0
- package/tests/suite/bin/plan +0 -0
- package/tests/suite/bin/plpn +0 -0
- package/tests/suite/bin/rlaa +0 -0
- package/tests/suite/bin/rlaax +0 -0
- package/tests/suite/bin/rlaay +0 -0
- package/tests/suite/bin/rlaix +0 -0
- package/tests/suite/bin/rlaiy +0 -0
- package/tests/suite/bin/rlaz +0 -0
- package/tests/suite/bin/rlazx +0 -0
- package/tests/suite/bin/rola +0 -0
- package/tests/suite/bin/rolax +0 -0
- package/tests/suite/bin/roln +0 -0
- package/tests/suite/bin/rolz +0 -0
- package/tests/suite/bin/rolzx +0 -0
- package/tests/suite/bin/rora +0 -0
- package/tests/suite/bin/rorax +0 -0
- package/tests/suite/bin/rorn +0 -0
- package/tests/suite/bin/rorz +0 -0
- package/tests/suite/bin/rorzx +0 -0
- package/tests/suite/bin/rraa +0 -0
- package/tests/suite/bin/rraax +0 -0
- package/tests/suite/bin/rraay +0 -0
- package/tests/suite/bin/rraix +0 -0
- package/tests/suite/bin/rraiy +0 -0
- package/tests/suite/bin/rraz +0 -0
- package/tests/suite/bin/rrazx +0 -0
- package/tests/suite/bin/rtin +0 -0
- package/tests/suite/bin/rtsn +0 -0
- package/tests/suite/bin/sbca +0 -0
- package/tests/suite/bin/sbcax +0 -0
- package/tests/suite/bin/sbcay +0 -0
- package/tests/suite/bin/sbcb +0 -0
- package/tests/suite/bin/sbcb(eb) +0 -0
- package/tests/suite/bin/sbcix +0 -0
- package/tests/suite/bin/sbciy +0 -0
- package/tests/suite/bin/sbcz +0 -0
- package/tests/suite/bin/sbczx +0 -0
- package/tests/suite/bin/sbxb +0 -0
- package/tests/suite/bin/secn +0 -0
- package/tests/suite/bin/sedn +0 -0
- package/tests/suite/bin/sein +0 -0
- package/tests/suite/bin/shaay +0 -0
- package/tests/suite/bin/shaiy +0 -0
- package/tests/suite/bin/shsay +0 -0
- package/tests/suite/bin/shxay +0 -0
- package/tests/suite/bin/shyax +0 -0
- package/tests/suite/bin/staa +0 -0
- package/tests/suite/bin/staax +0 -0
- package/tests/suite/bin/staay +0 -0
- package/tests/suite/bin/staix +0 -0
- package/tests/suite/bin/staiy +0 -0
- package/tests/suite/bin/staz +0 -0
- package/tests/suite/bin/stazx +0 -0
- package/tests/suite/bin/stxa +0 -0
- package/tests/suite/bin/stxz +0 -0
- package/tests/suite/bin/stxzy +0 -0
- package/tests/suite/bin/stya +0 -0
- package/tests/suite/bin/styz +0 -0
- package/tests/suite/bin/styzx +0 -0
- package/tests/suite/bin/taxn +0 -0
- package/tests/suite/bin/tayn +0 -0
- package/tests/suite/bin/trap1 +0 -0
- package/tests/suite/bin/trap10 +0 -0
- package/tests/suite/bin/trap11 +0 -0
- package/tests/suite/bin/trap12 +0 -0
- package/tests/suite/bin/trap13 +0 -0
- package/tests/suite/bin/trap14 +0 -0
- package/tests/suite/bin/trap15 +0 -0
- package/tests/suite/bin/trap16 +0 -0
- package/tests/suite/bin/trap17 +0 -0
- package/tests/suite/bin/trap2 +0 -0
- package/tests/suite/bin/trap3 +0 -0
- package/tests/suite/bin/trap4 +0 -0
- package/tests/suite/bin/trap5 +0 -0
- package/tests/suite/bin/trap6 +0 -0
- package/tests/suite/bin/trap7 +0 -0
- package/tests/suite/bin/trap8 +0 -0
- package/tests/suite/bin/trap9 +0 -0
- package/tests/suite/bin/tsxn +0 -0
- package/tests/suite/bin/txan +0 -0
- package/tests/suite/bin/txsn +0 -0
- package/tests/suite/bin/tyan +0 -0
- package/tests/suite/cbm-hackers-post.html +178 -0
- package/tests/suite/cbm-hackers-post.md +78 -0
- package/tests/test-machine.js +288 -0
- package/tests/test-suite.js +147 -0
- package/tests/test.css +7 -0
- package/tests/unit/gzip/test-1 +0 -0
- package/tests/unit/gzip/test-1.gz +0 -0
- package/tests/unit/gzip/test-2 +0 -0
- package/tests/unit/gzip/test-2.gz +0 -0
- package/tests/unit/gzip/test-3 +0 -0
- package/tests/unit/gzip/test-3.gz +0 -0
- package/tests/unit/gzip/test-4 +0 -0
- package/tests/unit/gzip/test-4.gz +0 -0
- package/tests/unit/test-adc.js +307 -0
- package/tests/unit/test-bcd.js +30 -0
- package/tests/unit/test-cmos.js +266 -0
- package/tests/unit/test-disc-drive.js +85 -0
- package/tests/unit/test-disc-hfe.js +347 -0
- package/tests/unit/test-disc.js +232 -0
- package/tests/unit/test-fifo.js +35 -0
- package/tests/unit/test-gamepad-source.js +67 -0
- package/tests/unit/test-gzip.js +22 -0
- package/tests/unit/test-intel-fdc.js +93 -0
- package/tests/unit/test-keyboard.js +410 -0
- package/tests/unit/test-mouse-joystick-source.js +128 -0
- package/tests/unit/test-scheduler.js +190 -0
- package/tests/unit/test-serial.js +154 -0
- package/tests/unit/test-teletext-adaptor.js +359 -0
- package/tests/unit/test-tokenise.js +65 -0
- package/tests/unit/test-url-params.js +398 -0
- package/tests/unit/test-utils.js +276 -0
- package/tests/unit/test-video.js +498 -0
- package/tests/unit/test-zip.js +56 -0
- package/tests/unit/zip/test-mixed.zip +0 -0
- package/tests/unit/zip/test-rom.zip +0 -0
- package/tests/unit/zip/test-ssd.zip +0 -0
- package/tools/fir-generator.js +80 -0
- package/tools/vite-plugin-fir-shader.js +131 -0
- package/vite.config.js +34 -0
package/src/filestore.js
ADDED
|
@@ -0,0 +1,666 @@
|
|
|
1
|
+
// Level-3 file server emulator ported from FSEM2
|
|
2
|
+
// https://github.com/mmbeeb/FSEM
|
|
3
|
+
|
|
4
|
+
"use strict";
|
|
5
|
+
|
|
6
|
+
import { ReceiveBlock, EconetPacket } from "./econet.js";
|
|
7
|
+
import * as utils from "./utils.js";
|
|
8
|
+
|
|
9
|
+
export class Filestore {
|
|
10
|
+
constructor(cpu, econet) {
|
|
11
|
+
this.cpu = cpu;
|
|
12
|
+
this.econet = econet;
|
|
13
|
+
this.scsi = [];
|
|
14
|
+
this.l3fs = [];
|
|
15
|
+
this.pollCount = 0;
|
|
16
|
+
this.ram = new Uint8Array((64 + 32) * 1024);
|
|
17
|
+
this.emulationSpeed = 0;
|
|
18
|
+
this.logTemp = "";
|
|
19
|
+
|
|
20
|
+
this.A = this.X = this.Y = this.SP = this.M = 0;
|
|
21
|
+
this.PC = this.XPC = this.L = this.R = 0;
|
|
22
|
+
this.N = this.V = this.Z = this.C = this.F = 0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
GBYTE() {
|
|
26
|
+
return this.ram[this.PC++];
|
|
27
|
+
}
|
|
28
|
+
GWORD() {
|
|
29
|
+
return this.ram[this.PC++] | (this.ram[this.PC++] << 8);
|
|
30
|
+
}
|
|
31
|
+
WORD(l) {
|
|
32
|
+
return this.ram[l] | (this.ram[l + 1] << 8);
|
|
33
|
+
}
|
|
34
|
+
PUSH(m) {
|
|
35
|
+
this.ram[0x100 + this.SP] = m;
|
|
36
|
+
this.SP--;
|
|
37
|
+
this.SP &= 0xff;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
PULL() {
|
|
41
|
+
this.SP++;
|
|
42
|
+
this.SP &= 0xff;
|
|
43
|
+
return this.ram[0x100 + this.SP];
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
NZ(v) {
|
|
47
|
+
v &= 0xff;
|
|
48
|
+
this.Z = 0 | (v === 0x00);
|
|
49
|
+
this.N = 0 | (v >= 0x80);
|
|
50
|
+
return v;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
oswrch(char) {
|
|
54
|
+
if (this.emulationSpeed === 0) {
|
|
55
|
+
// During startup, run the FS emulation at full speed and log output
|
|
56
|
+
if (char >= 32 && char <= 127) {
|
|
57
|
+
this.logTemp += String.fromCharCode(char);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (char === 13) {
|
|
61
|
+
console.log("Filestore: " + this.logTemp.trim());
|
|
62
|
+
if (this.logTemp.includes("Starting")) {
|
|
63
|
+
this.emulationSpeed = 20; // Once started up, we can slow down the emulation considerably
|
|
64
|
+
}
|
|
65
|
+
this.logTemp = "";
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
osword() {
|
|
71
|
+
let p = (this.Y << 8) | this.X;
|
|
72
|
+
switch (this.A) {
|
|
73
|
+
case 0x0: {
|
|
74
|
+
// Read line (put '1' into buffer, Drives/stations = 1)
|
|
75
|
+
let k = this.ram[p] | (this.ram[p + 1] << 8);
|
|
76
|
+
this.ram[k] = 49; // '1'
|
|
77
|
+
this.ram[k + 1] = 13;
|
|
78
|
+
this.Y = 1;
|
|
79
|
+
this.C = 0;
|
|
80
|
+
|
|
81
|
+
this.oswrch(49); // '1'
|
|
82
|
+
break;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
case 0x0e: {
|
|
86
|
+
const current = new Date();
|
|
87
|
+
this.ram[p] = current.getFullYear() - 2000;
|
|
88
|
+
this.ram[p + 1] = current.getMonth() + 1;
|
|
89
|
+
this.ram[p + 2] = current.getDate();
|
|
90
|
+
this.ram[p + 3] = current.getDay() + 1;
|
|
91
|
+
this.ram[p + 4] = current.getHours();
|
|
92
|
+
this.ram[p + 5] = current.getMinutes();
|
|
93
|
+
this.ram[p + 6] = current.getSeconds();
|
|
94
|
+
break;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
case 0x10: {
|
|
98
|
+
// Transmit
|
|
99
|
+
let stationId = this.ram[p + 2];
|
|
100
|
+
|
|
101
|
+
if (stationId !== 0xff) {
|
|
102
|
+
let bufstart =
|
|
103
|
+
(this.ram[p + 4] |
|
|
104
|
+
(this.ram[p + 5] << 8) |
|
|
105
|
+
(this.ram[p + 6] << 16) |
|
|
106
|
+
(this.ram[p + 7] << 24)) >>>
|
|
107
|
+
0;
|
|
108
|
+
let bufend =
|
|
109
|
+
(this.ram[p + 8] |
|
|
110
|
+
(this.ram[p + 9] << 8) |
|
|
111
|
+
(this.ram[p + 10] << 16) |
|
|
112
|
+
(this.ram[p + 11] << 24)) >>>
|
|
113
|
+
0;
|
|
114
|
+
let length = bufend - bufstart;
|
|
115
|
+
|
|
116
|
+
if (bufstart >= 0x10000) bufstart = (bufstart & 0xffff) | 0x10000;
|
|
117
|
+
|
|
118
|
+
this.econet.serverTx = new EconetPacket(stationId, 0, 254, 0);
|
|
119
|
+
this.econet.serverTx.controlFlag = this.ram[p];
|
|
120
|
+
this.econet.serverTx.port = this.ram[p + 1];
|
|
121
|
+
|
|
122
|
+
for (let i = 0; i < length; i++) {
|
|
123
|
+
this.econet.serverTx.buffer[i + 4] = this.ram[bufstart + i];
|
|
124
|
+
}
|
|
125
|
+
this.econet.serverTx.bytesInBuffer = 4 + length;
|
|
126
|
+
}
|
|
127
|
+
break;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
case 0x11: {
|
|
131
|
+
// Receive
|
|
132
|
+
if (this.ram[p + 0] === 0) {
|
|
133
|
+
// Create new receive block
|
|
134
|
+
let rxBuffer = new ReceiveBlock(
|
|
135
|
+
this.econet.nextReceiveBlockNumber,
|
|
136
|
+
this.ram[p + 1],
|
|
137
|
+
this.ram[p + 2],
|
|
138
|
+
(this.ram[p + 5] |
|
|
139
|
+
(this.ram[p + 6] << 8) |
|
|
140
|
+
(this.ram[p + 7] << 16) |
|
|
141
|
+
(this.ram[p + 8] << 24)) >>>
|
|
142
|
+
0,
|
|
143
|
+
(this.ram[p + 9] |
|
|
144
|
+
(this.ram[p + 10] << 8) |
|
|
145
|
+
(this.ram[p + 11] << 16) |
|
|
146
|
+
(this.ram[p + 12] << 24)) >>>
|
|
147
|
+
0,
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
this.econet.receiveBlocks.push(rxBuffer);
|
|
151
|
+
this.ram[p] = this.econet.nextReceiveBlockNumber;
|
|
152
|
+
this.econet.nextReceiveBlockNumber++;
|
|
153
|
+
this.econet.nextReceiveBlockNumber &= 0xff;
|
|
154
|
+
if (this.econet.nextReceiveBlockNumber === 0) {
|
|
155
|
+
this.econet.nextReceiveBlockNumber = 1;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
//console.log("Filestore: new receive block " + rxBuffer.id + " " + rxBuffer.receivePort.toString(16) + " " + rxBuffer.bufferStart.toString(16) + " " + rxBuffer.bufferEnd.toString(16));
|
|
159
|
+
} // Read and delete receive block
|
|
160
|
+
else {
|
|
161
|
+
let rxblock = this.econet.receiveBlocks.find((e) => e.id === this.ram[p + 0]);
|
|
162
|
+
if (rxblock.bufferStart + rxblock.data.bytesInBuffer - 4 < rxblock.bufferEnd) {
|
|
163
|
+
rxblock.bufferEnd = rxblock.bufferStart + rxblock.data.bytesInBuffer - 4;
|
|
164
|
+
}
|
|
165
|
+
this.ram[p + 1] = rxblock.controlFlag;
|
|
166
|
+
this.ram[p + 2] = rxblock.receivePort;
|
|
167
|
+
this.ram[p + 3] = rxblock.stationId;
|
|
168
|
+
this.ram[p + 4] = 0;
|
|
169
|
+
this.ram[p + 5] = rxblock.bufferStart & 0xff;
|
|
170
|
+
this.ram[p + 6] = (rxblock.bufferStart >>> 8) & 0xff;
|
|
171
|
+
this.ram[p + 7] = (rxblock.bufferStart >>> 16) & 0xff;
|
|
172
|
+
this.ram[p + 8] = (rxblock.bufferStart >>> 24) & 0xff;
|
|
173
|
+
this.ram[p + 9] = rxblock.bufferEnd & 0xff;
|
|
174
|
+
this.ram[p + 10] = (rxblock.bufferEnd >>> 8) & 0xff;
|
|
175
|
+
this.ram[p + 11] = (rxblock.bufferEnd >>> 16) & 0xff;
|
|
176
|
+
this.ram[p + 12] = (rxblock.bufferEnd >>> 24) & 0xff;
|
|
177
|
+
|
|
178
|
+
// Copy buffer contents to FS memory
|
|
179
|
+
let bufferStart = rxblock.bufferStart;
|
|
180
|
+
if (bufferStart >= 0x10000) bufferStart = (bufferStart & 0xffff) | 0x10000;
|
|
181
|
+
|
|
182
|
+
for (let i = 0; i < rxblock.bufferEnd - rxblock.bufferStart; i++) {
|
|
183
|
+
this.ram[bufferStart + i] = rxblock.data.buffer[i + 4];
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
this.econet.deleteReceiveBlock(this.ram[p]);
|
|
187
|
+
//console.log("Filestore: read and delete receive block " + this.ram[p]);
|
|
188
|
+
}
|
|
189
|
+
break;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
case 0x13:
|
|
193
|
+
this.ram[p + 1] = 254; // Station ID
|
|
194
|
+
break;
|
|
195
|
+
|
|
196
|
+
case 0x72: {
|
|
197
|
+
// SCSI handling
|
|
198
|
+
let addr =
|
|
199
|
+
(this.ram[p + 1] | (this.ram[p + 2] << 8) | (this.ram[p + 3] << 16) | (this.ram[p + 4] << 24)) >>>
|
|
200
|
+
0;
|
|
201
|
+
if (addr >= 0x10000) addr = (addr & 0xffff) | 0x10000; //host memory
|
|
202
|
+
|
|
203
|
+
let result = 4,
|
|
204
|
+
sec = ((this.ram[p + 6] & 0x1f) << 16) | (this.ram[p + 7] << 8) | this.ram[p + 8];
|
|
205
|
+
let len = this.ram[p + 9] * 0x100; // SCSI_SECSIZE
|
|
206
|
+
|
|
207
|
+
if (!len)
|
|
208
|
+
len =
|
|
209
|
+
this.ram[p + 11] |
|
|
210
|
+
((this.ram[p + 12] << 8) | (this.ram[p + 13] << 16) | ((this.ram[p + 14] << 24) >>> 0));
|
|
211
|
+
|
|
212
|
+
switch (this.ram[p + 5]) {
|
|
213
|
+
case 0x08: //read
|
|
214
|
+
case 0x0a: //write
|
|
215
|
+
if (this.ram[p + 5] === 0x08) {
|
|
216
|
+
// read
|
|
217
|
+
for (let i = sec * 0x100; i < sec * 0x100 + len; i++) {
|
|
218
|
+
this.ram[addr++] = this.scsi[i];
|
|
219
|
+
}
|
|
220
|
+
} // write
|
|
221
|
+
else
|
|
222
|
+
for (let i = sec * 0x100; i < sec * 0x100 + len; i++) {
|
|
223
|
+
this.scsi[i] = this.ram[addr++];
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
result = 0;
|
|
227
|
+
break;
|
|
228
|
+
|
|
229
|
+
default:
|
|
230
|
+
break;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
this.ram[p] = result;
|
|
234
|
+
break;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
case 0x73:
|
|
238
|
+
this.ram[p] = 0; //sector
|
|
239
|
+
this.ram[p + 1] = 0;
|
|
240
|
+
this.ram[p + 2] = 0;
|
|
241
|
+
this.ram[p + 3] = 0;
|
|
242
|
+
this.ram[p + 4] = 0;
|
|
243
|
+
break;
|
|
244
|
+
|
|
245
|
+
default:
|
|
246
|
+
console.log("Filestore: unhandled osword 0x" + this.A.toString(16));
|
|
247
|
+
break;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
osbyte() {
|
|
252
|
+
switch (this.A) {
|
|
253
|
+
case 0x0d:
|
|
254
|
+
case 0x0e:
|
|
255
|
+
case 0x0f:
|
|
256
|
+
break;
|
|
257
|
+
|
|
258
|
+
case 0x32: // Poll transmit block
|
|
259
|
+
if (this.econet.serverTx.bytesInBuffer > 0) {
|
|
260
|
+
this.X = 0x80;
|
|
261
|
+
} else {
|
|
262
|
+
this.X = 0;
|
|
263
|
+
}
|
|
264
|
+
break;
|
|
265
|
+
|
|
266
|
+
case 0x33: {
|
|
267
|
+
// Poll receive block
|
|
268
|
+
let rxblock = this.econet.receiveBlocks.find((e) => e.id === this.X);
|
|
269
|
+
this.X = 0;
|
|
270
|
+
if (rxblock) {
|
|
271
|
+
this.X = rxblock.controlFlag;
|
|
272
|
+
|
|
273
|
+
if (this.X >= 0x80) {
|
|
274
|
+
this.X = rxblock.controlFlag;
|
|
275
|
+
//console.log("osbyte found received block id " + rxblock.id + " " + this.X.toString(16) + " " + this.Y.toString(16));
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
break;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
case 0x34:
|
|
282
|
+
this.econet.deleteReceiveBlock(this.X);
|
|
283
|
+
break;
|
|
284
|
+
case 0x35:
|
|
285
|
+
break;
|
|
286
|
+
case 0x85:
|
|
287
|
+
this.X = 0;
|
|
288
|
+
this.Y = 32 << 2;
|
|
289
|
+
break;
|
|
290
|
+
case 0x86:
|
|
291
|
+
this.X = this.Y = 0;
|
|
292
|
+
break;
|
|
293
|
+
case 0x87:
|
|
294
|
+
case 0x96:
|
|
295
|
+
case 0x97:
|
|
296
|
+
break;
|
|
297
|
+
case 0xb4:
|
|
298
|
+
this.X = 0;
|
|
299
|
+
break;
|
|
300
|
+
case 0xe5:
|
|
301
|
+
break;
|
|
302
|
+
|
|
303
|
+
default:
|
|
304
|
+
console.log("Filestore: unhandled osbyte 0x" + this.A.toString(16));
|
|
305
|
+
break;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
reset() {
|
|
310
|
+
console.log("Filestore: initialisation");
|
|
311
|
+
|
|
312
|
+
const filestoreRef = this;
|
|
313
|
+
utils.loadData("econet/L3FS.dat").then(function (data) {
|
|
314
|
+
filestoreRef.l3fs = data;
|
|
315
|
+
for (let i = 0; i < data.length; i++) {
|
|
316
|
+
filestoreRef.ram[0x400 + i] = data[i];
|
|
317
|
+
}
|
|
318
|
+
filestoreRef.PC = 0x400;
|
|
319
|
+
filestoreRef.SP = 0xff;
|
|
320
|
+
filestoreRef.A = 1;
|
|
321
|
+
});
|
|
322
|
+
utils.loadData("econet/scsi.dat").then(function (data) {
|
|
323
|
+
filestoreRef.scsi = data;
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
polltime(cycles) {
|
|
328
|
+
this.pollCount += cycles;
|
|
329
|
+
if (this.pollCount > this.emulationSpeed) {
|
|
330
|
+
this.pollCount = 0;
|
|
331
|
+
|
|
332
|
+
// Decode and execute next instruction
|
|
333
|
+
let op,
|
|
334
|
+
i,
|
|
335
|
+
i2,
|
|
336
|
+
j = 0;
|
|
337
|
+
|
|
338
|
+
this.XPC = this.PC;
|
|
339
|
+
if (this.PC >= 0xf800)
|
|
340
|
+
op = 0x60; //ROM, read rts
|
|
341
|
+
else op = this.GBYTE();
|
|
342
|
+
|
|
343
|
+
i = op & 0x1f; //row
|
|
344
|
+
i2 = i & 0x03;
|
|
345
|
+
j = op >> 5; //column
|
|
346
|
+
|
|
347
|
+
if (i === 0 && j < 4) {
|
|
348
|
+
//all implicit except JSR
|
|
349
|
+
switch (j) {
|
|
350
|
+
case 0: //brk
|
|
351
|
+
this.PC = this.WORD(0x0202); //BRKV
|
|
352
|
+
break;
|
|
353
|
+
case 1: //jsr, absolute
|
|
354
|
+
this.L = this.GWORD();
|
|
355
|
+
this.PUSH(--this.PC >> 8);
|
|
356
|
+
this.PUSH(this.PC);
|
|
357
|
+
this.PC = this.L;
|
|
358
|
+
break;
|
|
359
|
+
case 2: //rti
|
|
360
|
+
break;
|
|
361
|
+
case 3: //rts
|
|
362
|
+
this.PC = this.PULL();
|
|
363
|
+
this.PC |= this.PULL() << 8;
|
|
364
|
+
this.PC++;
|
|
365
|
+
break;
|
|
366
|
+
}
|
|
367
|
+
} else if (i === 8) {
|
|
368
|
+
//all implicit
|
|
369
|
+
switch (j) {
|
|
370
|
+
case 0: //php
|
|
371
|
+
this.M = (this.N << 7) | (this.V << 6) | (this.Z << 1) | this.C;
|
|
372
|
+
this.PUSH(this.M);
|
|
373
|
+
break;
|
|
374
|
+
case 1: //plp
|
|
375
|
+
this.M = this.PULL();
|
|
376
|
+
this.N = (this.M & 0x80) > 0;
|
|
377
|
+
this.V = (this.M & 0x40) > 0;
|
|
378
|
+
this.Z = (this.M & 2) > 0;
|
|
379
|
+
this.C = this.M & 1;
|
|
380
|
+
break;
|
|
381
|
+
case 2: //pha
|
|
382
|
+
this.PUSH(this.A);
|
|
383
|
+
break;
|
|
384
|
+
case 3: //pla
|
|
385
|
+
this.A = this.NZ(this.PULL());
|
|
386
|
+
break;
|
|
387
|
+
case 4: //dey
|
|
388
|
+
this.Y--;
|
|
389
|
+
this.Y &= 0xff;
|
|
390
|
+
this.NZ(this.Y);
|
|
391
|
+
break;
|
|
392
|
+
case 5: //tay
|
|
393
|
+
this.Y = this.NZ(this.A);
|
|
394
|
+
break;
|
|
395
|
+
case 6: //iny
|
|
396
|
+
this.Y++;
|
|
397
|
+
this.Y &= 0xff;
|
|
398
|
+
this.NZ(this.Y);
|
|
399
|
+
break;
|
|
400
|
+
case 7: //inx
|
|
401
|
+
this.X++;
|
|
402
|
+
this.X &= 0xff;
|
|
403
|
+
this.NZ(this.X);
|
|
404
|
+
break;
|
|
405
|
+
}
|
|
406
|
+
} else if (i === 10 && j > 3) {
|
|
407
|
+
//all implicit
|
|
408
|
+
switch (j) {
|
|
409
|
+
case 4: //txa
|
|
410
|
+
this.A = this.NZ(this.X);
|
|
411
|
+
break;
|
|
412
|
+
case 5: //tax
|
|
413
|
+
this.X = this.NZ(this.A);
|
|
414
|
+
break;
|
|
415
|
+
case 6: //dex
|
|
416
|
+
this.X--;
|
|
417
|
+
this.X &= 0xff;
|
|
418
|
+
this.NZ(this.X);
|
|
419
|
+
break;
|
|
420
|
+
case 7: //nop
|
|
421
|
+
break;
|
|
422
|
+
}
|
|
423
|
+
} else if (i === 16) {
|
|
424
|
+
//branch, all relative
|
|
425
|
+
let flag = ~j & 1;
|
|
426
|
+
switch (j >> 1) {
|
|
427
|
+
case 0:
|
|
428
|
+
flag ^= this.N;
|
|
429
|
+
break;
|
|
430
|
+
case 1:
|
|
431
|
+
flag ^= this.V;
|
|
432
|
+
break;
|
|
433
|
+
case 2:
|
|
434
|
+
flag ^= this.C;
|
|
435
|
+
break;
|
|
436
|
+
case 3:
|
|
437
|
+
flag ^= this.Z;
|
|
438
|
+
break;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
this.M = this.GBYTE();
|
|
442
|
+
|
|
443
|
+
if (flag) {
|
|
444
|
+
if (this.M & 0x80) this.PC -= 0x100;
|
|
445
|
+
this.PC += this.M;
|
|
446
|
+
}
|
|
447
|
+
} else if (i === 24) {
|
|
448
|
+
//all implicit
|
|
449
|
+
switch (j) {
|
|
450
|
+
case 0: //clc
|
|
451
|
+
this.C = 0;
|
|
452
|
+
break;
|
|
453
|
+
case 1: //sec
|
|
454
|
+
this.C = 1;
|
|
455
|
+
break;
|
|
456
|
+
case 2: //cli
|
|
457
|
+
break;
|
|
458
|
+
case 3: //sei
|
|
459
|
+
break;
|
|
460
|
+
case 4: //tya
|
|
461
|
+
this.A = this.NZ(this.Y);
|
|
462
|
+
break;
|
|
463
|
+
case 5: //clv
|
|
464
|
+
this.V = 0;
|
|
465
|
+
break;
|
|
466
|
+
case 6: //cld
|
|
467
|
+
break;
|
|
468
|
+
case 7: //sed
|
|
469
|
+
break;
|
|
470
|
+
}
|
|
471
|
+
} else if (i === 26) {
|
|
472
|
+
//all implicit
|
|
473
|
+
if (j & 1)
|
|
474
|
+
//tsx
|
|
475
|
+
this.X = this.NZ(this.SP);
|
|
476
|
+
//txs
|
|
477
|
+
else this.SP = this.X;
|
|
478
|
+
} else {
|
|
479
|
+
//multiple address modes
|
|
480
|
+
let acc = 0,
|
|
481
|
+
imm = 0,
|
|
482
|
+
store = 0;
|
|
483
|
+
|
|
484
|
+
if (i === 10) {
|
|
485
|
+
acc = 1;
|
|
486
|
+
} else {
|
|
487
|
+
if (i === 1) {
|
|
488
|
+
//(zp,X)
|
|
489
|
+
this.L = this.GBYTE() + this.X;
|
|
490
|
+
this.L = this.WORD(this.L);
|
|
491
|
+
} else if (i === 25 || op === 190) {
|
|
492
|
+
//LDX abs,Y
|
|
493
|
+
this.L = this.GWORD() + this.Y;
|
|
494
|
+
} else {
|
|
495
|
+
switch (i >> 2) {
|
|
496
|
+
case 0: //#
|
|
497
|
+
case 2: //#
|
|
498
|
+
imm = 1;
|
|
499
|
+
break;
|
|
500
|
+
case 1: //zp
|
|
501
|
+
this.L = this.GBYTE();
|
|
502
|
+
break;
|
|
503
|
+
case 3: //abs
|
|
504
|
+
this.L = this.GWORD();
|
|
505
|
+
break;
|
|
506
|
+
case 4: //(zp),Y
|
|
507
|
+
this.L = this.GBYTE();
|
|
508
|
+
this.L = this.WORD(this.L) + this.Y;
|
|
509
|
+
break;
|
|
510
|
+
case 5:
|
|
511
|
+
if (op === 150)
|
|
512
|
+
//STX zp,Y
|
|
513
|
+
this.L = this.GBYTE() + this.Y;
|
|
514
|
+
//zp,X
|
|
515
|
+
else this.L = this.GBYTE() + this.X;
|
|
516
|
+
break;
|
|
517
|
+
case 7: //abs,X
|
|
518
|
+
this.L = this.GWORD() + this.X;
|
|
519
|
+
break;
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
if (acc) this.M = this.A;
|
|
525
|
+
else if (imm) this.M = this.GBYTE();
|
|
526
|
+
else this.M = this.ram[this.L];
|
|
527
|
+
|
|
528
|
+
switch (i2) {
|
|
529
|
+
case 0:
|
|
530
|
+
switch (j) {
|
|
531
|
+
case 1: //bit
|
|
532
|
+
this.NZ(this.A & this.M);
|
|
533
|
+
this.V = (this.M & 0x40) > 0;
|
|
534
|
+
this.N = (this.M & 0x80) > 0;
|
|
535
|
+
break;
|
|
536
|
+
case 2: //jmp absolute
|
|
537
|
+
this.PC = this.L;
|
|
538
|
+
break;
|
|
539
|
+
case 3: //jmp indirect
|
|
540
|
+
this.PC = this.WORD(this.L);
|
|
541
|
+
break;
|
|
542
|
+
case 4: //sty
|
|
543
|
+
this.M = this.Y;
|
|
544
|
+
store = 1;
|
|
545
|
+
break;
|
|
546
|
+
case 5: //ldy
|
|
547
|
+
this.Y = this.NZ(this.M);
|
|
548
|
+
break;
|
|
549
|
+
case 6: //cpy
|
|
550
|
+
this.NZ(this.Y - this.M);
|
|
551
|
+
this.C = this.Y >= this.M;
|
|
552
|
+
break;
|
|
553
|
+
case 7: //cpx
|
|
554
|
+
this.NZ(this.X - this.M);
|
|
555
|
+
this.C = this.X >= this.M;
|
|
556
|
+
break;
|
|
557
|
+
}
|
|
558
|
+
break;
|
|
559
|
+
case 1:
|
|
560
|
+
switch (j) {
|
|
561
|
+
case 0: //ora
|
|
562
|
+
this.A = this.NZ(this.A | this.M);
|
|
563
|
+
break;
|
|
564
|
+
case 1: //and
|
|
565
|
+
this.A = this.NZ(this.A & this.M);
|
|
566
|
+
break;
|
|
567
|
+
case 2: //eor
|
|
568
|
+
this.A = this.NZ(this.A ^ this.M);
|
|
569
|
+
break;
|
|
570
|
+
case 7: //sbc
|
|
571
|
+
this.M = ~this.M & 0xff;
|
|
572
|
+
// falls through
|
|
573
|
+
case 3: //adc
|
|
574
|
+
this.R = this.A + this.M + this.C;
|
|
575
|
+
this.C = this.R >= 0x100;
|
|
576
|
+
this.V = ((this.A ^ this.R) & (this.M ^ this.R) & 0x80) > 0;
|
|
577
|
+
this.A = this.NZ(this.R);
|
|
578
|
+
break;
|
|
579
|
+
case 4: //sta
|
|
580
|
+
this.M = this.A;
|
|
581
|
+
store = 1;
|
|
582
|
+
break;
|
|
583
|
+
case 5: //lda
|
|
584
|
+
this.A = this.NZ(this.M);
|
|
585
|
+
break;
|
|
586
|
+
case 6: //cmp
|
|
587
|
+
this.NZ(this.A - this.M);
|
|
588
|
+
this.C = this.A >= this.M;
|
|
589
|
+
break;
|
|
590
|
+
}
|
|
591
|
+
break;
|
|
592
|
+
case 2:
|
|
593
|
+
store = 1;
|
|
594
|
+
switch (j) {
|
|
595
|
+
case 0: //asl
|
|
596
|
+
this.C = 0;
|
|
597
|
+
// falls through
|
|
598
|
+
case 1: //rol
|
|
599
|
+
this.F = (this.M & 0x80) > 0;
|
|
600
|
+
this.M = this.NZ((this.M << 1) | this.C);
|
|
601
|
+
this.C = this.F;
|
|
602
|
+
break;
|
|
603
|
+
case 2: //lsr
|
|
604
|
+
this.C = 0;
|
|
605
|
+
// falls through
|
|
606
|
+
case 3: //ror
|
|
607
|
+
this.F = this.M & 1;
|
|
608
|
+
this.M = this.NZ((this.M >> 1) | (this.C << 7));
|
|
609
|
+
this.C = this.F;
|
|
610
|
+
break;
|
|
611
|
+
case 4: //stx
|
|
612
|
+
this.M = this.X;
|
|
613
|
+
break;
|
|
614
|
+
case 5: //ldx
|
|
615
|
+
this.X = this.NZ(this.M);
|
|
616
|
+
store = 0;
|
|
617
|
+
break;
|
|
618
|
+
case 6: //dec
|
|
619
|
+
this.M--;
|
|
620
|
+
this.M &= 0xff;
|
|
621
|
+
this.NZ(this.M);
|
|
622
|
+
break;
|
|
623
|
+
case 7: //inc
|
|
624
|
+
this.M++;
|
|
625
|
+
this.M &= 0xff;
|
|
626
|
+
this.NZ(this.M);
|
|
627
|
+
break;
|
|
628
|
+
}
|
|
629
|
+
break;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
if (store) {
|
|
633
|
+
if (acc) this.A = this.M;
|
|
634
|
+
else this.ram[this.L] = this.M;
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
// Have we been asked to execute an OS ROM call?
|
|
639
|
+
if (this.PC >= 0xf800) {
|
|
640
|
+
switch (this.PC) {
|
|
641
|
+
case 0xf800: //reset
|
|
642
|
+
break;
|
|
643
|
+
case 0xffe0: //OSRDCH
|
|
644
|
+
this.A = 83; // The letter 'S' (tells FS3 to start)
|
|
645
|
+
this.C = 0;
|
|
646
|
+
break;
|
|
647
|
+
case 0xfff1: //OSWORD
|
|
648
|
+
this.osword();
|
|
649
|
+
break;
|
|
650
|
+
case 0xfff4: //OSBYTE
|
|
651
|
+
this.osbyte();
|
|
652
|
+
break;
|
|
653
|
+
case 0xffe7: //OSNEWL
|
|
654
|
+
case 0xffe3: //OSASCI
|
|
655
|
+
case 0xffee: //OSWRCH
|
|
656
|
+
this.oswrch(this.A);
|
|
657
|
+
break;
|
|
658
|
+
case 0xfff7: //OSCLI
|
|
659
|
+
break;
|
|
660
|
+
default:
|
|
661
|
+
break;
|
|
662
|
+
}
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|