summaryrefslogtreecommitdiff
path: root/src/dev/x86/SConscript
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-11 01:22:20 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-11 01:22:20 -0700
commit2753c07dc5131972d1dcbb7628e2f0712c778fec (patch)
tree1088254bfb5c9bcc4121cdfc6acfcf6c52c0d2d2 /src/dev/x86/SConscript
parentf22c7d48f3b99994c697075f5cc3b59c72f84092 (diff)
downloadgem5-2753c07dc5131972d1dcbb7628e2f0712c778fec.tar.xz
X86: Change the I8259 from a subdevice into a real SimObject.
--HG-- rename : src/dev/x86/south_bridge/i8259.cc => src/dev/x86/i8259.cc rename : src/dev/x86/south_bridge/i8259.hh => src/dev/x86/i8259.hh
Diffstat (limited to 'src/dev/x86/SConscript')
-rw-r--r--src/dev/x86/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dev/x86/SConscript b/src/dev/x86/SConscript
index c9ac19a91..6cc010f71 100644
--- a/src/dev/x86/SConscript
+++ b/src/dev/x86/SConscript
@@ -37,3 +37,7 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86':
SimObject('Cmos.py')
Source('cmos.cc')
TraceFlag('CMOS', 'Accesses to CMOS devices')
+
+ SimObject('I8259.py')
+ Source('i8259.cc')
+ TraceFlag('I8259', 'Accesses to the I8259 PIC devices')