From 17aa73cab7a6f86dae701c5c9cbc9ee685895f68 Mon Sep 17 00:00:00 2001 From: Werner Date: Tue, 16 Nov 2021 12:55:54 -0300 Subject: [PATCH] Update Instructions.rs --- Source/Instructions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Instructions.rs b/Source/Instructions.rs index 86225ff..3d9afdb 100644 --- a/Source/Instructions.rs +++ b/Source/Instructions.rs @@ -2,7 +2,7 @@ use crate::Machine; pub fn Nothing(vm: &mut Machine) -> bool { vm.WalkAddress(1); - false + true } pub fn LoadRegister(vm: &mut Machine) -> bool {