From 61ff2309410915b72f55473a27c389631c321971 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Tue, 2 Jul 2024 16:26:32 -0800 Subject: [PATCH] uxnmin should not wait for system/halt --- ref/uxnmin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref/uxnmin.c b/ref/uxnmin.c index dc38ecd..6a1567c 100644 --- a/ref/uxnmin.c +++ b/ref/uxnmin.c @@ -66,7 +66,7 @@ emu_deo(Uint8 addr, Uint8 value) int uxn_eval(Uint16 pc) { - if(!pc || uxn.dev[0x0f]) return 0; + if(!pc) return 0; for(;;) { Uint8 t; Uint16 tt;