Files
espressif--esp-idf/tools/test_bsasm/testcases/sanity.bsasm
T
2026-07-13 13:04:25 +08:00

14 lines
319 B
Plaintext

#Example bitscrambler program. Does nothing but forward all bytes.
cfg trailing_bytes 0 #End program as soon as the input EOFs.
cfg prefetch true #We expect M0/M1 to be filled
cfg lut_width_bits 8 #Not really applicable here
loop:
set 0..15 0..15,
set 16..23 H,
set 24..31 L,
write 32,
read 32,
jmp loop