Clement,
here is the code that will print all objects in the memory map. You can easily adapt it to your needs.
for (var prop in Program.cpu.memoryMap) {
print(" " + Program.cpu.memoryMap[prop].name
+ ", 0x" + Program.cpu.memoryMap[prop].base.toString(16)
+ ", 0x" + Program.cpu.memoryMap[prop].len.toString(16));