Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zikiflicky/ziyunsehel
A simple BrainFuck interpreter in C, that should compile and run on every machine with a C89 compliant compiler
https://github.com/zikiflicky/ziyunsehel
brainfuck c c89 esoteric-programming-language interpreter programming-language
Last synced: 23 days ago
JSON representation
A simple BrainFuck interpreter in C, that should compile and run on every machine with a C89 compliant compiler
- Host: GitHub
- URL: https://github.com/zikiflicky/ziyunsehel
- Owner: ZikiFlicky
- Created: 2021-07-07T11:23:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-09T21:47:58.000Z (over 3 years ago)
- Last Synced: 2024-12-13T00:07:06.590Z (23 days ago)
- Topics: brainfuck, c, c89, esoteric-programming-language, interpreter, programming-language
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ZiyunSehel
A little [BrainFuck](https://en.wikipedia.org/wiki/Brainfuck) interpreter implementation written in C (C89)
that targets *all of the platforms* (works on dos!).Right now it is capable of running BrainFuck from both a file (no heap allocation!),
and from a string.The code should also be seperated into multiple files because it's currently
really hard to work with everything in one file.Features I want to implement:
* Better command line option handling
* REPL
* Other things probably?