go-amd64-emulator icon indicating copy to clipboard operation
go-amd64-emulator copied to clipboard

Userland linux/amd64emulator in Go

go-amd64-emulator

Dependencies:

  • Go
  • Linux
  • GCC

Example

$ cat test/simple.c
int main() {
  return 254;
}
$ go build
$ ./go-amd64-emulator a.out && echo $?
254