Implemented infinite loops
This commit is contained in:
11
src/build/arch/x64/Jump.go
Normal file
11
src/build/arch/x64/Jump.go
Normal file
@ -0,0 +1,11 @@
|
||||
package x64
|
||||
|
||||
// Jump continues program flow at the new address.
|
||||
// The address is relative to the next instruction.
|
||||
func Jump8(code []byte, address int8) []byte {
|
||||
return append(
|
||||
code,
|
||||
0xeb,
|
||||
byte(address),
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user