MCPcopy Create free account
hub / github.com/Marus/cortex-debug / isInsideRange

Method isInsideRange

src/backend/disasm.ts:71–76  ·  view source on GitHub ↗
(startAddr: number, endAddr: number)

Source from the content-addressed store, hash-verified

69 }
70
71 public isInsideRange(startAddr: number, endAddr: number) {
72 if ((startAddr >= this.startAddress) && (endAddr <= this.endAddress)) {
73 return true;
74 }
75 return false;
76 }
77
78 public isOverlappingRange(startAddress: number, endAddress: number) { // Touching is overlapping
79 const length = endAddress - startAddress;

Callers 1

findInCacheMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected