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
..
2021-07-06 16:00:02 +01:00
2021-03-04 21:22:48 -06:00
2021-03-08 12:21:36 -06:00
2021-03-04 21:22:48 -06:00
2021-01-20 10:44:27 -06:00
2021-01-20 10:44:27 -06:00
2021-10-08 09:01:56 -05:00
2021-02-01 14:46:45 -06:00
2021-07-06 16:00:02 +01:00
2021-10-04 13:11:03 -05:00
2021-01-20 10:44:27 -06:00
2021-02-01 14:46:45 -06:00
2021-01-20 10:44:27 -06:00
2021-01-20 10:44:27 -06:00
2022-01-08 13:55:23 -06:00