acatalepsie/content/projects/jibniz/index.markdown

25 lines
956 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
---
**jibniz** is a javascript implementation of the IBNIZ virtual machine.
2020-07-12 02:18:11 +00:00
IBNIZ is an esoteric stack-based programming language created by _, 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.
## 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.