summary refs log tree commit diff
path: root/instructions/INX.ts
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-04-03 10:29:58 +0300
committerWlodekM <[email protected]>2025-04-03 10:29:58 +0300
commitc50e619bef9ecd2266ee904b87c6401cb0572660 (patch)
tree4b25b2daba31d9f542ed5dcb3d61e95c5d186bec /instructions/INX.ts
parent22bf543c4feca33cfcd68c57de516761bb64a553 (diff)
fix stuff
Diffstat (limited to 'instructions/INX.ts')
-rw-r--r--instructions/INX.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/instructions/INX.ts b/instructions/INX.ts
index 9c1cc1b..9a947e1 100644
--- a/instructions/INX.ts
+++ b/instructions/INX.ts
@@ -2,7 +2,7 @@ import type The65c02 from "../65c02.ts";
 
 export default function (this: The65c02, mode: string) {
     switch (mode) {
-        case 'implied':
+        case 'implicit':
             this.regX.increment()
             this.negative = this.regX.bit(7);
             this.zero = this.regX.num() == 0;