mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
24 lines
381 B
NASM
24 lines
381 B
NASM
machine Main {
|
|
degree 256;
|
|
reg pc[@pc];
|
|
reg X[<=];
|
|
reg A;
|
|
|
|
function main {
|
|
label_with_next:
|
|
A <=X= 1;
|
|
// END BATCH Label
|
|
|
|
labels_with_next:
|
|
other_label_just_after:
|
|
A <=X= 2;
|
|
// END BATCH Unimplemented
|
|
A <=X= 2;
|
|
// END BATCH Label
|
|
|
|
end:
|
|
return;
|
|
// END BATCH
|
|
}
|
|
}
|