Skip to content
/ bf9 Public

a brainfuck interpreter written in Plan 9 C

License

Notifications You must be signed in to change notification settings

thimc/bf9

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bf9

a brainfuck interpreter written in Plan 9 C

Commands

Character Function
> Increases the data pointer by one
< Decreases the data pointer by one
+ Increases the byte at the data pointer by one
- Decreases the byte at the data pointer by one
. Outputs the current byte at the data pointer
, Reads one byte from stdin to the byte at the data pointer
[ If the byte at the data pointer is zero jump to the matching ]
] If the bytes is nonzero jump back to the matching [

Caveats

The memory array size is 65535 bytes.

Usage

bf9 <source file>

Bugs

Probably.

About

a brainfuck interpreter written in Plan 9 C

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published