summary refs log tree commit diff
path: root/instructions/INX.ts
diff options
context:
space:
mode:
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;