summary refs log tree commit diff
path: root/instructions/CLC.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/CLC.ts
parent22bf543c4feca33cfcd68c57de516761bb64a553 (diff)
fix stuff
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;