Add demos

This commit is contained in:
Pedro de Oliveira 2014-08-14 08:24:00 +01:00
parent 5cea517710
commit afae0059d8
1 changed files with 8 additions and 4 deletions

View File

@ -17,11 +17,16 @@ cd z80/zxbrainfuck
pasmo -v --tapbas --err main.asm zxbrainfuck.tap
```
Demo
Demos
------
http://falsovsky.github.io/z80/zx-brainfuck.html
Running the [Fibonacci program] by [Daniel B Cristofani].
* [Hello World](http://falsovsky.github.io/z80/bf-hello.html)
* [Bad Hello World](http://falsovsky.github.io/z80/bf-bad_hello.html) from [esolang](http://esolangs.org/)'s article about [Brainfuck](http://esolangs.org/wiki/Brainfuck)
* [Arvorezinha](http://falsovsky.github.io/z80/bf-arvorezinha.html)
* [Arvorezinha with loops](http://falsovsky.github.io/z80/bf-arvorezinha_loops.html)
* [Input/Output test](http://falsovsky.github.io/z80/bf-io.html)
* [Fibonacci](http://falsovsky.github.io/z80/bf-fibonacci.html) from [Daniel B Cristofani] - [source](http://www.hevanet.com/cristofd/brainfuck/fib.b)
* [Number Warper](http://falsovsky.github.io/z80/bf-numwarp.html) also by [Daniel B Cristofani] - [source](http://www.hevanet.com/cristofd/brainfuck/numwarp.b)
License
----
@ -30,5 +35,4 @@ BSD
[Brainfuck]:http://en.wikipedia.org/wiki/Brainfuck
[Pasmo]:http://pasmo.speccy.org/
[Fibonacci program]:http://www.hevanet.com/cristofd/brainfuck/fib.b
[Daniel B Cristofani]:http://www.hevanet.com/cristofd/brainfuck/