cardinal-uxn 0.4.0

Uxn CPU interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Platform-specific macro to load the page-aligned jump table
.macro load_jump_table, x
    adrp x8, JUMP_TABLE
.endm

.macro CALL, name
    bl \name
.endm

.macro ENTRY, name
    .global \name
    \name:
.endm