From 3736efbceecd169625d82a66b5b3d3cc017024ec Mon Sep 17 00:00:00 2001 From: can1357 Date: Mon, 8 Apr 2024 21:56:40 +0200 Subject: [PATCH] Fix org. --- README.md | 8 ++++---- examples/benchmark/main.go | 2 +- examples/disasm-simple/main.go | 2 +- examples/encode-simple/main.go | 2 +- go.mod | 2 +- sugar.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 61c8b5a..5c9a355 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

License: MIT - GitHub Actions + GitHub Actions Gitter Discord

@@ -32,7 +32,7 @@ The following example program uses Zydis to disassemble a given memory buffer and prints the output to the console. -https://github.com/can1357/zydis-go/blob/229b8bb7bf0f346f253337eede5962f799111bd3/examples/disasm-simple/main.go#L12-L42 +https://github.com/zyantific/zydis-go/blob/229b8bb7bf0f346f253337eede5962f799111bd3/examples/disasm-simple/main.go#L12-L42 The above example program generates the following output: @@ -49,7 +49,7 @@ The above example program generates the following output: ### Encoder -https://github.com/can1357/zydis-go/blob/229b8bb7bf0f346f253337eede5962f799111bd3/examples/encode-simple/main.go#L11-L32 +https://github.com/zyantific/zydis-go/blob/229b8bb7bf0f346f253337eede5962f799111bd3/examples/encode-simple/main.go#L11-L32 The above example program generates the following output: @@ -66,7 +66,7 @@ More examples can be found in the [examples](./examples/) directory of this repo Simply get the package using `go get`: ```bash -go get -u github.com/can1357/zydis-go +go get -u github.com/zyantific/zydis-go ``` If you are not on `Windows AMD64` or `Linux AMD64`, you need to build the Zydis library for your platform and place the shared library nearby your executable. You can find the instructions for building the Zydis library [here](https://github.com/zyantific/zydis#build). diff --git a/examples/benchmark/main.go b/examples/benchmark/main.go index 6d852a1..374aa93 100644 --- a/examples/benchmark/main.go +++ b/examples/benchmark/main.go @@ -9,7 +9,7 @@ import ( "time" "unsafe" - "github.com/can1357/zydis-go" + "github.com/zyantific/zydis-go" ) const DISAS_BENCH_NO_FORMAT = true diff --git a/examples/disasm-simple/main.go b/examples/disasm-simple/main.go index b4eab94..03d23e4 100644 --- a/examples/disasm-simple/main.go +++ b/examples/disasm-simple/main.go @@ -5,7 +5,7 @@ import ( "fmt" "unsafe" - "github.com/can1357/zydis-go" + "github.com/zyantific/zydis-go" ) func main() { diff --git a/examples/encode-simple/main.go b/examples/encode-simple/main.go index 14bc054..6f3cbf4 100644 --- a/examples/encode-simple/main.go +++ b/examples/encode-simple/main.go @@ -4,7 +4,7 @@ import ( "fmt" "unsafe" - "github.com/can1357/zydis-go" + "github.com/zyantific/zydis-go" ) func main() { diff --git a/go.mod b/go.mod index 5576072..dcb0512 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/can1357/zydis-go +module github.com/zyantific/zydis-go go 1.22.1 diff --git a/sugar.go b/sugar.go index c90f25b..779a329 100644 --- a/sugar.go +++ b/sugar.go @@ -4,7 +4,7 @@ import ( "fmt" "unsafe" - "github.com/can1357/zydis-go/zyembed" + "github.com/zyantific/zydis-go/zyembed" ) func init() {