Reduced usage of temporary registers
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/build/asm"
|
||||
"git.akyoto.dev/cli/q/src/build/config"
|
||||
"git.akyoto.dev/cli/q/src/build/cpu"
|
||||
@ -17,8 +19,8 @@ func (f *Function) Call(label string) {
|
||||
f.postInstruction()
|
||||
}
|
||||
|
||||
func (f *Function) Comment(comment string) {
|
||||
f.assembler.Comment(comment)
|
||||
func (f *Function) Comment(format string, args ...any) {
|
||||
f.assembler.Comment(fmt.Sprintf(format, args...))
|
||||
f.postInstruction()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user