Fixed verbose output

This commit is contained in:
2024-07-20 17:46:40 +02:00
parent 155df7c44c
commit 263c0cfb8b
2 changed files with 6 additions and 1 deletions

View File

@ -29,6 +29,11 @@ func (f *Function) Jump(mnemonic asm.Mnemonic, label string) {
f.postInstruction()
}
func (f *Function) MemoryNumber(mnemonic asm.Mnemonic, a asm.Memory, b int) {
f.Assembler.MemoryNumber(mnemonic, a, b)
f.postInstruction()
}
func (f *Function) Register(mnemonic asm.Mnemonic, a cpu.Register) {
f.Assembler.Register(mnemonic, a)