https://github.com/ammarbinfaisal/bfasm
compiles brainf*** code to x86-64 machine code
https://github.com/ammarbinfaisal/bfasm
assembler assembly
Last synced: 5 months ago
JSON representation
compiles brainf*** code to x86-64 machine code
- Host: GitHub
- URL: https://github.com/ammarbinfaisal/bfasm
- Owner: ammarbinfaisal
- Created: 2024-01-14T08:09:14.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-29T03:02:46.000Z (almost 2 years ago)
- Last Synced: 2024-06-29T04:21:42.361Z (almost 2 years ago)
- Topics: assembler, assembly
- Language: Assembly
- Homepage:
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bfasm
compiles brainf*** code to x86-64 machine code
## usage
```
nasm -f elf64 asm.s && ld asm.o
./a.out # reads code from test.bf
```