diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 01:37:04 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 01:37:04 -0700 |
commit | 119e127d7128edfb729101b92ca160c1f01391ca (patch) | |
tree | 98eb5337e41132e51f3578bb4a709833b7a96876 /src/dev/x86/SConscript | |
parent | 8c532d629732e93fa23a38328b653eb4c2314936 (diff) | |
download | gem5-119e127d7128edfb729101b92ca160c1f01391ca.tar.xz |
X86: Create the IntDev and IntPin system.
The IntDev class is a base for anything that supports IntPins. IntPins allow
devices to generically trigger interrupts on a particular pin of an IntDev
device without having to know what the device is or what pin they're attached
to.
Diffstat (limited to 'src/dev/x86/SConscript')
-rw-r--r-- | src/dev/x86/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dev/x86/SConscript b/src/dev/x86/SConscript index 6cc010f71..71e5a9528 100644 --- a/src/dev/x86/SConscript +++ b/src/dev/x86/SConscript @@ -41,3 +41,6 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86': SimObject('I8259.py') Source('i8259.cc') TraceFlag('I8259', 'Accesses to the I8259 PIC devices') + + SimObject('X86IntPin.py') + Source('intdev.cc') |