q/src/register/MemoryLabel.go

9 lines
200 B
Go

package register
import "git.akyoto.dev/cli/q/src/asm"
func (f *Machine) MemoryLabel(mnemonic asm.Mnemonic, a asm.Memory, b string) {
f.Assembler.MemoryLabel(mnemonic, a, b)
f.postInstruction()
}