SE/FS: Get rid of FULL_SYSTEM in dev.

This commit is contained in:
Gabe Black
2011-11-13 02:05:32 -08:00
parent 362a53e572
commit 5fcd11eaa5
5 changed files with 1 additions and 21 deletions

View File

@@ -70,9 +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);
#if FULL_SYSTEM //XXX No functional port in SE mode.
system->functionalPort->writeBlob(addr, data, count);
#endif
DPRINTF(SimpleDisk, "read block=%#x len=%d\n", (uint64_t)block, count);
DDUMP(SimpleDiskData, data, count);