(name string)
| 158 | } |
| 159 | |
| 160 | func isReservedSymbol(name string) bool { |
| 161 | if _, ok := reservedSymbols[name]; ok { |
| 162 | return true |
| 163 | } |
| 164 | return false |
| 165 | } |
| 166 | |
| 167 | func getNextExecutableInstructionLoc(currentOffset uint16, currentInstrIndex int, instructions []Instruction) uint16 { |
| 168 | // if at the end then just return the location outside the loop |