mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
14 lines
263 B
NASM
14 lines
263 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;
|
|
} |