diff options
Diffstat (limited to 'src/mem/abstract_mem.hh')
-rw-r--r-- | src/mem/abstract_mem.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mem/abstract_mem.hh b/src/mem/abstract_mem.hh index 7b7e41913..43d9656da 100644 --- a/src/mem/abstract_mem.hh +++ b/src/mem/abstract_mem.hh @@ -209,21 +209,21 @@ class AbstractMemory : public MemObject * * @return a single contigous address range */ - Range<Addr> getAddrRange(); + Range<Addr> getAddrRange() const; /** * Get the memory size. * * @return the size of the memory */ - uint64_t size() { return range.size(); } + uint64_t size() const { return range.size(); } /** * Get the start address. * * @return the start address of the memory */ - Addr start() { return range.start; } + Addr start() const { return range.start; } /** * Should this memory be passed to the kernel and part of the OS |