summary refs log tree commit diff
path: root/instructions/CLC.ts
diff options
context:
space:
mode:
Diffstat (limited to 'instructions/CLC.ts')
-rw-r--r--instructions/CLC.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/instructions/CLC.ts b/instructions/CLC.ts
index d14b2f4..f909d85 100644
--- a/instructions/CLC.ts
+++ b/instructions/CLC.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.carry = false;
             this.programCounter.increment();
             break;