Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itsubaki/asm-go
Go assembly playground
https://github.com/itsubaki/asm-go
assembly
Last synced: 2 days ago
JSON representation
Go assembly playground
- Host: GitHub
- URL: https://github.com/itsubaki/asm-go
- Owner: itsubaki
- Created: 2023-05-17T05:16:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-06T08:59:11.000Z (about 1 year ago)
- Last Synced: 2024-12-06T10:07:58.317Z (about 2 months ago)
- Topics: assembly
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# asm-go
- Go assembly playground
```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