https://github.com/ecmgs/flbi
a fast lightweight brainfuck interpreter
https://github.com/ecmgs/flbi
brainfuck brainfuck-interpreter
Last synced: 2 months ago
JSON representation
a fast lightweight brainfuck interpreter
- Host: GitHub
- URL: https://github.com/ecmgs/flbi
- Owner: ECMGS
- License: mit
- Created: 2020-04-03T11:37:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T17:08:10.000Z (almost 4 years ago)
- Last Synced: 2025-01-24T01:53:47.006Z (4 months ago)
- Topics: brainfuck, brainfuck-interpreter
- Language: C
- Size: 1.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scbfi
a fast lightweight bf interpreter**Command:** bf (filename)
-Note- if there's no filename provided, it executes the example file (ej.bf).
**Characteristics:**
* The stack is 30000 bytes
* The máximum number of nested loops that can be used in a program is 3000 **However this doesn't mean that a program can't use more of 3000 loop, it's only when they're nested**
* The only limit on file size is the available ram in your computer, this is because all the instructions are stored in ram before startitng the program**Roadmap:**
* Add debuging mode
* Add interactive mode