Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eddieantonio/brainmuk
brainfuck x86 compiler and interpreter
https://github.com/eddieantonio/brainmuk
aot brainfuck compiler hacktoberfest interpreter
Last synced: 3 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-16T23:32:32.000Z (over 5 years ago)
- Last Synced: 2024-08-03T18:16:45.524Z (5 months ago)
- Topics: aot, brainfuck, compiler, hacktoberfest, interpreter
- Language: C
- Homepage: https://github.com/eddieantonio/brainmuk
- Size: 67.4 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - brainmuk
README
Brainmuk
========[![Build Status](https://travis-ci.org/eddieantonio/brainmuk.svg?branch=master)](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!