Bfi
Jump to navigation
Jump to search
| bfi | |
| | |
| General | |
|---|---|
| Author(s) | anarkavre |
| Type | Demo |
| Version | 0.0.1 |
| Licence | GPL |
| Links | |
| Download | |
| Source | |
| Peripherals | |
Brainfuck interpreter for the Wii based on Urban Müller's original.
Usage
| Command | Description |
|---|---|
| > | Increment the pointer. |
| < | Decrement the pointer. |
| + | Increment the byte at the pointer. |
| - | Decrement the byte at the pointer. |
| . | Output the byte at the pointer. |
| , | Input a byte and store it in the byte at the pointer. |
| [ | Jump forward past the matching ] if the byte at the pointer is zero. |
| ] | Jump backward to the matching [ unless the byte at the pointer is zero. |
| Action | ||
|---|---|---|
| Escape | Exit |