mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 04:02:27 +00:00

This adds an assembler for the BitScrambler assembly language, plus unit tests for it. It also adds the loopback driver, which can do BitScrambler operations on memory-to-memory transfers. Documentation is also included.
15 lines
197 B
Plaintext
15 lines
197 B
Plaintext
#Test TGT field of opcodes
|
|
#(Also the end_val of the loop features)
|
|
|
|
main:
|
|
LOOPA 10 1 main
|
|
IF 0 end
|
|
IFN 0 mid
|
|
mid:
|
|
JMP end
|
|
JMP main
|
|
LOOPB 0 1 mid
|
|
LOOPA 65535 1 main
|
|
end:
|
|
LOOPA -32768 1 end
|