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

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