Sign inSign up

cphreak/kim1emulator

By cphreak

•Updated almost 3 years ago

KIM-1 emulator in Javascript.

Image
0

10K+

cphreak/kim1emulator repository overview

⁠KIM-1 computer emulator in Javascript.

⁠All credit for the emulator goes to Maksim Korzh aka Code Monkey King

Emulator source repo: https://github.com/maksimKorzh/KIM-1⁠

To run: docker run -dit --name kim1 -p 8080:80 cphreak/kim1emulator

Connect to localhost:8080 in the browser.

⁠Test code

Paste the following into the Assembler text box and assemble, then upload, and finally run to display 'AbCdEF' on the KIM-1 7-segment display.

define POINTH  $fb
define POINTL  $fa
define INH  $f9
define SCANDS $1f1f
START:  LDA #$ab
        STA POINTH  
        LDA #$cd
        STA POINTL  
        LDA #$ef
        STA INH     
LOOP:   JSR SCANDS  
        JMP    LOOP   

Tag summary

Content type

Image

Digest

sha256:5dc5898c7…

Size

63 MB

Last updated

almost 3 years ago

docker pull cphreak/kim1emulator