Files
powdr/test_data/asm/single_function_vm.asm
Leandro Pacheco cea207ff3f Machine properties using with syntax (#1267)
This implements issue #1251.
Basically `machine Foo(a,b) { ... }` is now `machine Foo with latch: a,
operation_id: b { ... }`
2024-04-25 16:02:01 +00:00

8 lines
90 B
Rust

machine VM with degree: 8 {
reg pc[@pc];
function main {
return;
}
}