summary refs log tree commit diff
path: root/instructions/PHA.ts
blob: 0156db14a05babf2ffbe0e538935afc85c53a237 (plain)
1
2
3
4
5
6
import type The65c02 from "../65c02.ts";

export default function (this: The65c02) {
    this.push(this.regA.num());
    this.programCounter.increment()
}