~ashn/bfi

5bdd69715392341536c18d57d6013aa4270fd605 — ashn 1 year, 2 months ago bdfabe2 master
Update README
1 files changed, 6 insertions(+), 7 deletions(-)

M README.md
M README.md => README.md +6 -7
@@ 63,21 63,20 @@ user    0m21.943s
sys     0m0.000s
```
## Implementation Details
+ 30,000 cell tape.
+ 8-bit wrapping cells.
+ No cell update upon reading `EOF` with `,`.
+ Debug instruction # is supported with the use of the `--debug` option.
+ 30,000 cell tape
+ 8-bit wrapping cells
+ No cell update upon reading `EOF` with `,`

## Building
### POSIX c99
```sh
$ make clean bfi
$ make bfi
```

### GCC or Clang
```sh
$ make clean bfi CC=gcc CFLAGS='-std=c99 -pedantic-errors -Os -DNDEBUG -Wall -Wextra'
$ make clean bfi CC=clang CFLAGS='-std=c99 -pedantic-errors -Os -DNDEBUG -Wall -Wextra'
$ make bfi CC=gcc CFLAGS='-std=c99 -pedantic-errors -Os -DNDEBUG -Wall -Wextra'
$ make bfi CC=clang CFLAGS='-std=c99 -pedantic-errors -Os -DNDEBUG -Wall -Wextra'
```

## License