asmodeus 0.1.0

Complete assembler and emulator for Asmodeus architecture
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; example: Simple macro usage 

MAKRO add_and_output val1 val2
    POB val1
    DOD val2
    WYJSCIE
KONM

start:
    add_and_output data1 data2
    STP

data1: RST 10
data2: RST 20