customasm 0.13.12

An assembler for custom, user-defined instruction sets!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ruledef
{
    hlt => 0x12 @ asm {}
    abort => 0x34 @ asm { }
    stop => 0x56 @ asm {
        
    }
}

hlt   ; = 0x12
hlt   ; = 0x12
abort ; = 0x34
abort ; = 0x34
stop  ; = 0x56
stop  ; = 0x56