MCPcopy Create free account
hub / github.com/djhworld/simple-computer / isReservedSymbol

Function isReservedSymbol

asm/assembler.go:160–165  ·  view source on GitHub ↗
(name string)

Source from the content-addressed store, hash-verified

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

Callers 1

ProcessMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected