diff options
Diffstat (limited to 'src/dev')
-rw-r--r-- | src/dev/simple_disk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/simple_disk.cc b/src/dev/simple_disk.cc index 9cec638b8..c611ec061 100644 --- a/src/dev/simple_disk.cc +++ b/src/dev/simple_disk.cc @@ -70,7 +70,7 @@ SimpleDisk::read(Addr addr, baddr_t block, int count) const for (int i = 0, j = 0; i < count; i += SectorSize, j++) image->read(data + i, block + j); - system->physProxy->writeBlob(addr, data, count); + system->physProxy.writeBlob(addr, data, count); DPRINTF(SimpleDisk, "read block=%#x len=%d\n", (uint64_t)block, count); DDUMP(SimpleDiskData, data, count); |