pico-sdk/tools
Michael Olson d831eff5a2
fix pioasm python output (#694) (#695)
Issue:
    irq wait 0
    irq 0
are translated as:
    irq(wait, 0)                          # 0
    irq(nowait, 0)                        # 1
wait/nowait are incorrect, should be block or ommited (alt: noblock).

After change:
    irq(block, 0)                         # 0
    irq(0)                                # 1
2022-01-08 13:55:23 -06:00
..
elf2uf2 elf2uf2: correctly parse ELF files where the program header is not directly following the file header 2021-07-14 15:59:09 -05:00
pioasm fix pioasm python output (#694) (#695) 2022-01-08 13:55:23 -06:00
check_doxygen_groups.py Initial Release 2021-01-20 10:44:27 -06:00
CMakeLists.txt respect OUTPUT_NAME target property when generating supplemental files (#592) 2021-10-12 09:08:44 -05:00
extract_configs.py Modify extract_configs.py to deal with _u(X) macros (#222) 2021-03-04 21:22:48 -06:00
FindELF2UF2.cmake Prevent the literal string DEBUG from being appended to some messages in CMake < 3.15 (#433) 2021-05-25 17:10:55 -05:00
FindPioasm.cmake Prevent the literal string DEBUG from being appended to some messages in CMake < 3.15 (#433) 2021-05-25 17:10:55 -05:00