commit e4bd0fb8d773ecd3e028117952749c5a9d47a93c
parent f0d14474956e177f5d30ba7ecd248a376b37c927
Author: Virgil Dupras <hsoft@hardcoded.net>
Date: Sun, 29 Jan 2023 14:52:29 -0500
posix: drop off compile mode on "quit" instead of "abort"
Makes more sense.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/posix/vm.c b/posix/vm.c
@@ -195,12 +195,12 @@ static void QUIT() { // op: 06
vm.bwidth = 0;
vm.woff = 0;
vm.RSP = RSTOP;
+ vm.compiling = 0;
vm.PC = mainaddr;
}
static void ABORT_() { // op: 07
vm.PSP = PSTOP;
- vm.compiling = 0;
sd(NEXTMETA, 0);
QUIT();
}