SplitScript reference / MemoryRange
MemoryRange
record
record MemoryRange
Describes one mapped process-memory range.
Values are snapshots of host mapping metadata discovered cooperatively.
Examples
Inspect a discovered mapping
let emulatorRange = await process.findMemoryRange(0x48000, MemoryRangeAccess.ReadWrite)
Fields
| Member | Description | Available through |
|---|---|---|
| address | Returns the first mapped address. | |
| executable | Reports whether the range is executable. | |
| readable | Reports whether the range is readable. | |
| size | Returns the mapped byte length. | |
| writable | Reports whether the range is writable. |