Files
powdr/test_data/asm/batching/labels.asm
2023-12-19 14:07:21 +01:00

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
}
}