Class Range
java.lang.Object
com.pnfsoftware.jeb.core.units.code.asm.memory.Range
A memory range and its protection flags.
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongRange end address, exclusive.intMemory protection flags.longRange start address, inclusive. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
start
public long startRange start address, inclusive. -
end
public long endRange end address, exclusive. -
protection
public int protectionMemory protection flags.
-
-
Constructor Details
-
Range
public Range(long start, long end, int protection) Create a memory range.- Parameters:
start- start address, inclusiveend- end address, exclusiveprotection- memory protection flags
-