Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronen25/rib
Ronen's Interactive BrainF**k Interpreter
https://github.com/ronen25/rib
Last synced: 3 months ago
JSON representation
Ronen's Interactive BrainF**k Interpreter
- Host: GitHub
- URL: https://github.com/ronen25/rib
- Owner: ronen25
- License: gpl-2.0
- Created: 2015-10-31T11:09:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-16T06:28:18.000Z (almost 8 years ago)
- Last Synced: 2024-04-24T16:15:02.626Z (7 months ago)
- Language: C
- Size: 90.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - rib
README
# rib
Ronen's Interactive BrainF**k Interpreter## Introduction
RIB allows you to interactivly test and write BrainF**k programs.Features include:
- Interactive interpretation of BrainF**k programs
- View the memory and pointer positionsRIB uses [BrainFuck.tk](http://www.brainfuck.tk) as a reference implementation.
## Getting RIB
### System Requirements
- A C99-compliant compiler (tested only with GCC 4.8.4 on Ubuntu 14.04 LTS AMD64)
- GNU Make >= 2.69### Installation
* Clone the repository using git:
```
$ git clone https://github.com/ronen25/rib
```
* Compile the interpreter:
```
$ make
```
* Run the interpreter:
```
$ rib
```### Notes
* The interpreter currently supports inputting only one-line programs (see issues).
* No proper testing done (no CMocka support yet), so if you find any bugs please report them.