Fix Physical Memory to allow memory sizes bigger than 128MB.
authorAli Saidi <saidi@eecs.umich.edu>
Wed, 16 Aug 2006 23:01:11 +0000 (19:01 -0400)
committerAli Saidi <saidi@eecs.umich.edu>
Wed, 16 Aug 2006 23:01:11 +0000 (19:01 -0400)
commit2f145ac54ab3a9ed2c00e80460a10782da895604
tree206beb49f35504f0e63e6f833bfc38dfa074c1cb
parentbb6af8eb8ad870138030c617f27a1f4193341e8e
Fix Physical Memory to allow memory sizes bigger than 128MB.
Kinda port DRAM to new memory system. The code is *really* ugly (not my fault) and right now something about the stats it uses
causes a simulator segfault.

src/SConscript:
    Add dram.cc to sconscript
src/mem/physical.cc:
src/mem/physical.hh:
    Add params struct to physical memory, use params, make latency function be virtual
src/python/m5/objects/PhysicalMemory.py:
    Add DRAMMemory python class

--HG--
extra : convert_revision : 5bd9f2e071c62da89e8efa46fa016f342c01535d
src/SConscript
src/mem/dram.cc [new file with mode: 0644]
src/mem/dram.hh [new file with mode: 0644]
src/mem/physical.cc
src/mem/physical.hh
src/python/m5/objects/PhysicalMemory.py