From 6989bde006d98d4b817dbd0ba1a4ea6163f2285e Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Fri, 12 Apr 2024 14:42:19 +0200 Subject: [PATCH] disable SHUTDN --- src/opcodes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/opcodes.c b/src/opcodes.c index ec7657f..e854c99 100644 --- a/src/opcodes.c +++ b/src/opcodes.c @@ -367,9 +367,9 @@ static void op806( byte* opc ) // C=ID static void op807( byte* opc ) // SHUTDN { // TODO: Fix SHUTDN - if ( !cpu.in[ 0 ] && !cpu.in[ 1 ] && !cpu.in[ 3 ] ) { - cpu.shutdown = true; - } + /* if ( !cpu.in[ 0 ] && !cpu.in[ 1 ] && !cpu.in[ 3 ] ) { */ + /* cpu.shutdown = true; */ + /* } */ cpu.pc += 3; cpu.cycles += 5; }