blob: d83da173adc544fea192be39c7e8cc30cb818000 (
plain)
1
2
3
4
5
6
7
8
|
import type The65c02 from "../65c02.ts";
export default function (this: The65c02, mode: string) {
const addr = this.getAddr(mode);
this.io.address.set(addr);
this.io.data.set(this.regA.num())
this.write();
}
|