11 lines
261 B
Go
11 lines
261 B
Go
package register
|
|
|
|
import (
|
|
"git.akyoto.dev/cli/q/src/build/asm"
|
|
"git.akyoto.dev/cli/q/src/build/cpu"
|
|
)
|
|
|
|
func (f *Machine) MemoryRegister(mnemonic asm.Mnemonic, a asm.Memory, b cpu.Register) {
|
|
f.Assembler.MemoryRegister(mnemonic, a, b)
|
|
f.postInstruction()
|
|
}
|