summary refs log tree commit diff
path: root/pc-thing/instructions/ldr.ts
blob: 724b94ca309d0a80167de774a3737a7495fce8b3 (plain)
1
2
3
4
5
6
7
8
import { PC } from "../pc.ts";

export default {
    function(this: PC, [reg1, reg2]: number[]) {
        this.registers[this.lib.parseReg(reg1)] = this.getMem(this.registers[this.lib.parseReg(reg2)])
    },
    args: 2
}