diff --git a/README.md b/README.md index 0776fe9..839e30c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,5 @@

-avo -
-Build Status - +avo

Generate x86 Assembly with Go

diff --git a/examples/add/README.md b/examples/add/README.md index 8625fa3..7f3378d 100644 --- a/examples/add/README.md +++ b/examples/add/README.md @@ -10,7 +10,7 @@ The [code generator](asm.go) is as follows: package main -import . "github.com/mmcloughlin/avo/build" +import . "sources.truenas.cloud/code/avo/build" func main() { TEXT("Add", NOSPLIT, "func(x, y uint64) uint64") diff --git a/examples/args/README.md b/examples/args/README.md index 8032cc7..cb8c4e8 100644 --- a/examples/args/README.md +++ b/examples/args/README.md @@ -59,7 +59,7 @@ Struct fields can be accessed with the `Field()` method. Note that this _require [embedmd]:# (asm.go go /.*Package\(.*/) ```go - Package("github.com/mmcloughlin/avo/examples/args") + Package("sources.truenas.cloud/code/avo/examples/args") ``` This package contains the struct definition: diff --git a/examples/ext/README.md b/examples/ext/README.md index a56c184..222ae80 100644 --- a/examples/ext/README.md +++ b/examples/ext/README.md @@ -8,7 +8,7 @@ In this case, you will need to write the function stub yourself. ```go package ext -import "github.com/mmcloughlin/avo/examples/ext/ext" +import "sources.truenas.cloud/code/avo/examples/ext/ext" // StructFieldB returns field B. func StructFieldB(e ext.Struct) byte @@ -18,7 +18,7 @@ Then in place of the usual `TEXT` declaration we use `Implement` to state that w [embedmd]:# (asm.go go /.*Package.*/ /RET.*/) ```go - Package("github.com/mmcloughlin/avo/examples/ext") + Package("sources.truenas.cloud/code/avo/examples/ext") Implement("StructFieldB") b := Load(Param("e").Field("B"), GP8()) Store(b, ReturnIndex(0)) diff --git a/examples/geohash/README.md b/examples/geohash/README.md index ae2e4cf..09b000a 100644 --- a/examples/geohash/README.md +++ b/examples/geohash/README.md @@ -2,8 +2,6 @@ Integer [geohash](https://en.wikipedia.org/wiki/Geohash) encoding. -Refer to ["Geohash in Golang Assembly"](https://mmcloughlin.com/posts/geohash-assembly) for implementation details. - [embedmd]:# (asm.go /func main/ $) ```go func main() { diff --git a/tests/fixedbugs/issue100/allocfail/README.md b/tests/fixedbugs/issue100/allocfail/README.md index 94044d8..b6de3f8 100644 --- a/tests/fixedbugs/issue100/allocfail/README.md +++ b/tests/fixedbugs/issue100/allocfail/README.md @@ -1,5 +1,5 @@ Regression test for [issue -#100](https://github.com/mmcloughlin/avo/issues/100) based on the original +#100](sources.truenas.cloud/code/avo/issues/100) based on the original reported allocation failure. Based on the pull request