rx82 0.3.0

An emulator for the RX82 retro computer system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    ld cd, 0x1000 ; source address
    ld ef, 0x2000 ; destination address
    ld b, 0xFF    ; bytes to copy

LOOP:
    cmp b, 0x00
    jrz DONE
    ld a, (cd)
    ld (ef), a
    inc cd
    inc ef
    dec b
    jr LOOP

DONE:
    halt