We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef66ca9 commit 8973584Copy full SHA for 8973584
adafruit_pioasm.py
@@ -53,7 +53,8 @@ def assemble(text_program):
53
sideset_count = int(line.split()[1])
54
elif line.endswith(":"):
55
labels[line[:-1]] = len(instructions)
56
- elif line: # Only add as an instruction if the line isn't empty
+ elif line:
57
+ # Only add as an instruction if the line isn't empty
58
instructions.append(line)
59
60
max_delay = 2 ** (5 - sideset_count) - 1
0 commit comments