blob: 6d7d984544e37a2690deca6c0f3f4f589bb39f0a (
plain)
1
2
3
4
5
6
7
|
import type The65c02 from "../65c02.ts";
export default function (this: The65c02, mode: string) {
const location = this.getAddr(mode, ['relative', 'absolute']);
if (this.carry)
this.programCounter.set(location)
}
|