acatalepsie/content/projects/jibniz/index.markdown

27 lines
999 B
Markdown
Raw Normal View History

2020-06-13 16:22:47 +00:00
---
title: jibniz
subtitle: A javascript implementation of the IBNIZ VM
year: "2017"
labels:
repo: flupe/jibniz
license: MIT
---
2021-04-05 12:59:41 +00:00
**jibniz** is a javascript implementation of the [IBNIZ] virtual machine.
[IBNIZ] is an esoteric stack-based programming language created by viznut, in which every
2020-06-13 16:22:47 +00:00
instruction is one character long. The code is intended to be ran for each
2020-07-12 02:18:11 +00:00
pixel on a 256x256 screen, at every frame --- making it possible to produce
animations and interactive demos.
2021-04-05 12:59:41 +00:00
[IBNIZ]: http://viznut.fi/ibniz/
2020-07-12 02:18:11 +00:00
## Limitations
2020-09-25 23:45:58 +00:00
- Currently, this implementation **does not support audio**.
- WebGL is used for color conversion only. Ideally I would like to get rid of it
and find an exact integer only formula.
2020-07-12 02:18:11 +00:00
- At some point I wanted to compile the entire IBNIZ programs to WASM, rather
2020-09-25 23:45:58 +00:00
than build an interpreter. The problem is that IBNIZ programs are
*unstructured*. the `J` instruction allows you to jump *anywhere* in the
program. This makes WASM a poor target for the language.