rx82 0.1.0

An emulator for the RX82 retro computer system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
    def STDOUT 1
    jmp START
HELLO:
    data "Hello, world!", 0x00
START:
    ld cd, HELLO
LOOP:
    cmp (cd), 0x00
    rtz
    out (cd), STDOUT
    inc cd
    jmp LOOP