From e309ebf6e88b460a838a2229dd7ab55714ca80e9 Mon Sep 17 00:00:00 2001 From: Andrew Alderwick Date: Mon, 28 Jun 2021 06:46:04 +0100 Subject: [PATCH] Updated uxncli to match uxnemu --- src/uxncli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uxncli.c b/src/uxncli.c index edbb4db..80ec9f7 100644 --- a/src/uxncli.c +++ b/src/uxncli.c @@ -113,7 +113,7 @@ start(Uxn *u) if(!evaluxn(u, PAGE_PROGRAM)) return error("Reset", "Failed"); while(mempeek16(devconsole->dat, 0)) - while(read(0, &devconsole->dat[0x8], 1) > 0) + while(read(0, &devconsole->dat[0x2], 1) > 0) evaluxn(u, mempeek16(devconsole->dat, 0)); return 1; }