rx82 0.5.0

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

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

DONE:
    halt