Files
powdr/test_data/asm/single_operation.asm
2024-02-07 16:04:55 +01:00

14 lines
264 B
NASM

// we don't need to specify an operation_id if we have a single operation
machine SingleOperation(latch, _) {
operation nothing;
col fixed latch = [1]*;
col witness w;
w = w * w;
}
machine Main {
SingleOperation m;
link 1 => m.nothing;
}