diff options
author | WlodekM <[email protected]> | 2025-04-03 10:29:58 +0300 |
---|---|---|
committer | WlodekM <[email protected]> | 2025-04-03 10:29:58 +0300 |
commit | c50e619bef9ecd2266ee904b87c6401cb0572660 (patch) | |
tree | 4b25b2daba31d9f542ed5dcb3d61e95c5d186bec /instructions/CLC.ts | |
parent | 22bf543c4feca33cfcd68c57de516761bb64a553 (diff) |
fix stuff
Diffstat (limited to 'instructions/CLC.ts')
-rw-r--r-- | instructions/CLC.ts | 2 |
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; |