()
| 68 | return [label, operations] |
| 69 | |
| 70 | def getCurrentAddress(): |
| 71 | address = len(data) |
| 72 | for operations in program: |
| 73 | address = address + len(operations[1]) |
| 74 | return address |
| 75 | |
| 76 | def getLocationOfLabel(labelName): |
| 77 | location = 0 |
no outgoing calls
no test coverage detected