Added assembler instructions
This commit is contained in:
10
src/asm/x64/MoveRegNum32.go
Normal file
10
src/asm/x64/MoveRegNum32.go
Normal file
@ -0,0 +1,10 @@
|
||||
package x64
|
||||
|
||||
import (
|
||||
"io"
|
||||
)
|
||||
|
||||
func MoveRegNum32(w io.ByteWriter, register byte, number uint32) {
|
||||
w.WriteByte(0xb8 + register)
|
||||
AppendUint32(w, number)
|
||||
}
|
Reference in New Issue
Block a user