This is a classic Nintendo port of spacetime(Norns Study 3), it should run on any normal NES emulator. Developed on 9front’s Nintendo emulator, also tested on fceux and nestopia.
Spacetime is a weird function sequencer. It plays a note on each step, each step is a symbol for the action. It has 8 operators, I’ve added a snare hit to the random note operator for fun, and all operations wrap-around, since it only runs on 4 octaves.
To build it on Linux or OSX, run build.sh, if you’re on Plan9, use pcc to build asm6, and tools/asm6 src/cart.asm cart.nes
git clone https://git.sr.ht/~rabbits/spacetime
chmod +x ./build.sh
./build.sh
The ROM is written in 6502 Assembly, and the source can be found here, you can watch it in action here.
+ = increase note
- = decrease note
< = go to bottom note
> = go to top note
* = random note
M = fast metro
m = slow metro
# = jump random position
Enjoy!