https://github.com/pitr/blin
micro assembler
https://github.com/pitr/blin
Last synced: about 1 year ago
JSON representation
micro assembler
- Host: GitHub
- URL: https://github.com/pitr/blin
- Owner: pitr
- Created: 2021-07-31T20:08:32.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T20:15:45.000Z (almost 5 years ago)
- Last Synced: 2025-02-05T08:11:29.552Z (over 1 year ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blin
micro assembler
```
> 3+4
# assembly
push 4
vbroadcastss xmm0, [rsp]
pop rax
push 3
vbroadcastss xmm1, [rsp]
pop rax
xmm0, xmm1
# result
7 7 7 7
> !+2
# assembly
mov rax, [iit]
movdqu xmm0, [rax]
push 2
vbroadcastss xmm1, [rsp]
pop rax
xmm0, xmm1
# result
2 3 4 5
>
```