summaryrefslogtreecommitdiff
path: root/src/dev/x86/south_bridge/south_bridge.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-10 23:42:31 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-10 23:42:31 -0700
commitf85a7f00c0a9da6181fb803d760b1378fbc8bd27 (patch)
tree8fbe60a1bfdeccba1e14db7fdc9e4bcad43d9dc9 /src/dev/x86/south_bridge/south_bridge.cc
parentb03c95d075b74913313576e6e1fa4fc6b1f4dcb2 (diff)
downloadgem5-f85a7f00c0a9da6181fb803d760b1378fbc8bd27.tar.xz
X86: Make the time on the RTC configurable.
Diffstat (limited to 'src/dev/x86/south_bridge/south_bridge.cc')
-rw-r--r--src/dev/x86/south_bridge/south_bridge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/south_bridge/south_bridge.cc b/src/dev/x86/south_bridge/south_bridge.cc
index ded5d7ac5..fda5acbda 100644
--- a/src/dev/x86/south_bridge/south_bridge.cc
+++ b/src/dev/x86/south_bridge/south_bridge.cc
@@ -70,7 +70,7 @@ SouthBridge::SouthBridge(const Params *p) : PioDevice(p),
pic1(0x20, 2, p->pio_latency),
pic2(0xA0, 2, p->pio_latency),
pit(this, p->name + ".pit", 0x40, 4, p->pio_latency),
- cmos(this, 0x70, 2, p->pio_latency),
+ cmos(this, 0x70, 2, p->pio_latency, p->time),
speaker(&pit, 0x61, 1, p->pio_latency)
{
addDevice(pic1);