7 lines
148 B
Go
7 lines
148 B
Go
package x64
|
|
|
|
// Syscall is the primary way to communicate with the OS kernel.
|
|
func Syscall(code []byte) []byte {
|
|
return append(code, 0x0f, 0x05)
|
|
}
|