blob: 25f5334345477e7a4a9b73dac4efbc58aee99785 (
plain)
1
2
3
4
5
6
7
8
9
|
import { PC } from "../pc.ts";
export default {
function(this: PC, [addr]: string[]) {
this.returnStack.push(this.programPointer)
this.programPointer = Number(addr) - 1
},
args: 1
}
|