Sign in
gem5
/
amd
/
gem5
/
6dc3b2fa395601852cb3efff302229907b1759f8
/
.
/
python
/
m5
/
objects
/
PhysicalMemory.py
blob: e59e94e9be6930cb40afca0907c22643e9b287de [
file
] [
log
] [
blame
]
from
m5
import
*
from
MemObject
import
*
class
PhysicalMemory
(
MemObject
):
type
=
'PhysicalMemory'
range
=
Param
.
AddrRange
(
"Device Address"
)
file
=
Param
.
String
(
''
,
"memory mapped file"
)
latency
=
Param
.
Latency
(
'10ns'
,
"latency of an access"
)