commit | ce7923da4da4e5895ab737fbf2c9b603c764a933 | [log] [tgz] |
---|---|---|
author | Avi Kivity <avi@redhat.com> | Thu Dec 08 16:05:11 2011 +0200 |
committer | Avi Kivity <avi@redhat.com> | Tue Dec 20 14:14:06 2011 +0200 |
tree | 843c1365ccf1b6cf4cd3b3d816b1204c8d1a6c3c | |
parent | 8ea9252abe08631611effb905fbb4a015ec1514c [diff] [blame] |
memory: add memory_region_is_rom() Signed-off-by: Avi Kivity <avi@redhat.com>
diff --git a/memory.c b/memory.c index 4264b42..01baeac 100644 --- a/memory.c +++ b/memory.c
@@ -1074,6 +1074,11 @@ return mr->ram; } +bool memory_region_is_rom(MemoryRegion *mr) +{ + return mr->ram && mr->readonly; +} + void memory_region_set_offset(MemoryRegion *mr, target_phys_addr_t offset) { mr->offset = offset;