https://github.com/itsubaki/asm-go
Go assembly playground
https://github.com/itsubaki/asm-go
assembly
Last synced: about 1 month ago
JSON representation
Go assembly playground
- Host: GitHub
- URL: https://github.com/itsubaki/asm-go
- Owner: itsubaki
- Created: 2023-05-17T05:16:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-06T08:59:11.000Z (over 2 years ago)
- Last Synced: 2025-10-24T03:55:55.004Z (8 months ago)
- Topics: assembly
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# asm-go
```shell
% go version
go version go1.20.2 darwin/amd64
```
```shell
% cat math/amd64.s
TEXT ·Add2(SB),$0-12
MOVQ i+0(FP), AX
ADDQ $2, AX
MOVQ AX, ret+8(FP)
RET
```
```shell
% go run main.go
3
```
## Links
- https://blog.lufia.org/entry/2021/03/17/113000
- https://zenn.dev/hsaki/articles/godoc-asm-ja