summaryrefslogtreecommitdiff
path: root/src/dev/x86/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-11 01:13:11 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-11 01:13:11 -0700
commitf22c7d48f3b99994c697075f5cc3b59c72f84092 (patch)
tree08e815794cbf29b528b8dded19755a6abc13581c /src/dev/x86/SConscript
parent8c5dfa453296c5a87a46c409f68e0ef50ebfceb6 (diff)
downloadgem5-f22c7d48f3b99994c697075f5cc3b59c72f84092.tar.xz
X86: Change the CMOS from a sub-device to a real SimObject
--HG-- rename : src/dev/x86/south_bridge/cmos.cc => src/dev/x86/cmos.cc rename : src/dev/x86/south_bridge/cmos.hh => src/dev/x86/cmos.hh
Diffstat (limited to 'src/dev/x86/SConscript')
-rw-r--r--src/dev/x86/SConscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dev/x86/SConscript b/src/dev/x86/SConscript
index 463344001..c9ac19a91 100644
--- a/src/dev/x86/SConscript
+++ b/src/dev/x86/SConscript
@@ -32,5 +32,8 @@ Import('*')
if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
SimObject('PC.py')
-
Source('pc.cc')
+
+ SimObject('Cmos.py')
+ Source('cmos.cc')
+ TraceFlag('CMOS', 'Accesses to CMOS devices')