uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit ffb0a9c9bc7365f4e0579bded134504034536fc6
parent fad574816dcaa93086414d84021b51c8bd4f0319
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date:   Fri, 13 Jan 2023 10:14:20 -0800

(uxnasm.c) Auto-start at 0x100

Diffstat:
Msrc/uxnasm.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/uxnasm.c b/src/uxnasm.c @@ -408,6 +408,7 @@ static int assemble(FILE *f) { char w[0x40]; + p.ptr = 0x100; scpy("on-reset", p.scope, 0x40); while(fscanf(f, "%62s", w) == 1) if(slen(w) > 0x3d || !parse(w, f))