7. Empty Cell
Does nothing. Goes nowhere. This can be used to terminate programs.
<<exfuncs>>=
static int empty(trig_vm *vm,
int pos,
uint32_t cmd,
uint32_t data)
{
vm->running = 0;
trig_vm_wire_set(vm, 0, 0);
return pos;
}
prev | home | next