Implemented basic support for function pointers

This commit is contained in:
2025-01-30 16:33:20 +01:00
parent a2d80b0c21
commit 162824ec1c
8 changed files with 166 additions and 15 deletions

View File

@ -0,0 +1,8 @@
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()
}