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

export default function (this: The65c02) {
    this.status.set(this.pop())
    this.programCounter.set(this.pop() | (this.pop() << 8))
}