Files
avo/examples/add/asm.go

14 lines
164 B
Go
Raw Normal View History

2018-11-30 20:43:31 -08:00
package main
import (
. "github.com/mmcloughlin/avo/build"
"github.com/mmcloughlin/avo/reg"
)
func main() {
TEXT("add")
ADDQ(reg.R8, reg.R11)
RET()
EOF()
}