()
| 372 | return |
| 373 | |
| 374 | def parseUnmarkedLabels(): |
| 375 | pLine = 0 |
| 376 | for operations in program: |
| 377 | valLine = 0 |
| 378 | for val in operations[1]: |
| 379 | if ("LABEL" in str(val)): |
| 380 | program[pLine][1][valLine] = parseNumber(val[6:], -1) |
| 381 | valLine = valLine + 1 |
| 382 | pLine = pLine + 1 |
| 383 | return |
| 384 | |
| 385 | def compileASM(filepath): |
| 386 | file = open(filepath, "r") |
no test coverage detected