()
| 448 | return |
| 449 | |
| 450 | def compileResults(): |
| 451 | if (not(compiled)): |
| 452 | print(RED + "\tProgram could not be compiled" + ENDCOLOR) |
| 453 | else: |
| 454 | print("\tProgram compiled Successfully") |
| 455 | #print(output) |
| 456 | print("\tProgram length in words: " + str(getCurrentAddress())) |
| 457 | print("\tWriting to spreadsheet ROM...") |
| 458 | sendToSpreadsheet() |
| 459 | print("\tFinished in " + str(time.time()-startTime)[:6] + "s") |
| 460 | exit() |
| 461 | |
| 462 | if __name__ == "__main__": |
| 463 | startTime = time.time() |
no test coverage detected