Files
powdr/test_data/asm/batching/labels.asm
2023-06-14 02:02:35 +02:00

17 lines
177 B
NASM

degree 256;
reg pc[@pc];
reg X[<=];
reg A;
instr loop { pc' = pc }
label_with_next::
A <=X= 1;
labels_with_next::
other_label_just_after::
A <=X= 2;
A <=X= 2;
end::
loop;