1234567891011121314151617181920212223242526272829303132333435363738 |
- # Program that takes brainfuck program and translates it to comun.
- 0 "$>0 " --> # go one address up, in case first command is read
- @@
- <? ?
- <-
- $0 "+" = $1 "-" = | ?
- $0 -> $0 -> " " ->
- .
- $0 "<" = $1 ">" = | ?
- "$" -> $0 -> "0" -> " " ->
- .
- $0 "." = ?
- 0 "->' " -->
- .
- $0 "," = ?
- 0 "$<0 <- " -->
- .
- $0 91 = ? # left bracket
- 0 "@' " -->
- .
- $0 93 = ? # right bracker
- 0 ". " -->
- .
- ^
- ;
- !@
- .
- .
|