9 lines
193 B
Go
9 lines
193 B
Go
package register
|
|
|
|
import "git.akyoto.dev/cli/q/src/asm"
|
|
|
|
func (f *Machine) DLLCall(label string) {
|
|
f.Assembler.Label(asm.DLLCALL, label)
|
|
f.UseRegister(f.CPU.Output[0])
|
|
f.postInstruction()
|
|
}
|