MCPcopy Index your code
hub / github.com/InkboxSoftware/excelCPU / parseUnmarkedLabels

Function parseUnmarkedLabels

compileExcelASM16.py:374–383  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

372 return
373
374def 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
385def compileASM(filepath):
386 file = open(filepath, "r")

Callers 1

compileASMFunction · 0.85

Calls 1

parseNumberFunction · 0.85

Tested by

no test coverage detected