https://github.com/eddieantonio/brainmuk
brainfuck x86 compiler and interpreter
https://github.com/eddieantonio/brainmuk
aot brainfuck compiler hacktoberfest interpreter
Last synced: 9 days ago
JSON representation
brainfuck x86 compiler and interpreter
- Host: GitHub
- URL: https://github.com/eddieantonio/brainmuk
- Owner: eddieantonio
- License: mit
- Created: 2015-12-20T02:33:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-16T23:32:32.000Z (over 5 years ago)
- Last Synced: 2025-04-10T00:44:40.730Z (9 days ago)
- Topics: aot, brainfuck, compiler, hacktoberfest, interpreter
- Language: C
- Homepage: https://github.com/eddieantonio/brainmuk
- Size: 67.4 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - brainmuk
README
Brainmuk
========[](https://travis-ci.org/eddieantonio/brainmuk)
> brainfuck x86 compiler and interpreter
brainmuk interprets [brainfuck][] code by compiling directly into x86
machine code.Usage
-----$ brainmuk file.bf
[brainfuck]: https://en.wikipedia.org/wiki/Brainfuck
Scripts
-------You can write scripts as such:
$ cat hello.bf
#!/usr/bin/env brainmuk
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
$ chmod +x hello.bf
$ ./hello.bf
Hello, World!