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

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