CAM6 Demo
https://www.youtube.com/watch?v=LyLMHxRNuck
Original FORTH code that drove the actual CAM-6 board:
tomt-cam-forth-scr.txt: https://donhopkins.com/home/code/tomt-cam-forth-scr.txt
tomt-users-forth-scr.txt: https://donhopkins.com/home/code/tomt-users-forth-scr.txt
My compatible CA compiler and glue to the simulator written in C:
cam.f.txt: https://donhopkins.com/home/code/cam.f.txt
compile.f.txt: https://donhopkins.com/home/code/compile.f.txt
An old version of the simulator written C, before I rewrote it in JavaScript:
https://github.com/SimHacker/micropolis/tree/master/Micropol...
The JavaScript CAM6 simulator:
CAM6.js: https://github.com/SimHacker/CAM6/blob/master/javascript/CAM...

AGPL-3.0 · Raphaël Maurice Forment · 2026 · v0.1.9
| Platform | Terminal | Desktop |
|---|---|---|
| macOS (Universal) | zip | zip · dmg · app |
| Linux (x86_64) | zip · AppImage | zip · AppImage |
| Linux (ARM) | zip · AppImage | zip · AppImage |
| Windows (x86_64) | zip | zip |
Source code and issue tracker on Gitea. You can also compile the software yourself from source!
Cagire is a step sequencer where each step contains a Forth script instead of typical note data. When the sequencer reaches a step, it runs the associated script. Scripts can produce sound, trigger samples, apply effects, or do nothing at all. You are free to define what your scripts will do. Cagire includes a built-in audio engine called Doux. No external software is needed to make sound. It comes with oscillators, sample players, filters, reverb, delay, distortion, and more.
Cagire is free and open source, built by one person in my spare time. Donations keep the servers running, fund the hours I put into building it, and let me keep releasing it under a free license for everyone. If Cagire brings you joy, please consider chipping in.
Cagire ships with built-in interactive documentation. Browse it right inside the app, where every example is runnable on the spot. The manual is a full book, both a tutorial and a reference. It covers the interface, the two Forth-like languages and the sound engine. A printable edition of the same manual also exists.
Cagire scripts are written in Forth, a concatenative language you read one word at a time, from right to left. One step can do many things, here is an example:
saw snd
< c4 eb3 g3 > note
[ .5 .8 ] choose gain
( 8 crush ) sometimes
0.5 decay
.
A second language, Arf, lives between curly braces and allows you to write your own DSP when the basics are not enough:
{
110 saw 800 lpf
out
} synth .









Live coding is a technique where a programmer writes code in real-time in front of an audience. It is a way to experiment with code, to share openly, to express yourself through code. It can be technical, poetical, weird, preferably all at once. Live coding can be used to create music, visual art, and other forms of media. Live coding is an autotelic activity: doing it is its own reward. There are no errors, only fun. Learn more at TOPLAP or livecoding.fr.