cardinal-uxn 0.1.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 \x, JUMP_TABLE@PAGE
.endm

.macro CALL, name
    bl _\name
.endm

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