diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-01-25 20:35:00 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-01-25 20:35:00 -0800 |
commit | 56e182a6a9e58b951712582c4c63cf303847156e (patch) | |
tree | 0431ff1519392b7febc83bf4e94e41c6cb1ca7df /src/dev/x86/SConscript | |
parent | 151bc018dd621b62b60ee5eca10c7531de6eb441 (diff) | |
download | gem5-56e182a6a9e58b951712582c4c63cf303847156e.tar.xz |
X86: Add a dummy minimal DMA controller that doesn't do anything.
Diffstat (limited to 'src/dev/x86/SConscript')
-rw-r--r-- | src/dev/x86/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dev/x86/SConscript b/src/dev/x86/SConscript index 3481235c6..167b14a84 100644 --- a/src/dev/x86/SConscript +++ b/src/dev/x86/SConscript @@ -49,6 +49,10 @@ if env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'x86': Source('i8254.cc') TraceFlag('I8254', 'Interrupts from the I8254 timer'); + SimObject('I8237.py') + Source('i8237.cc') + TraceFlag('I8237', 'The I8237 dma controller'); + SimObject('PcSpeaker.py') Source('speaker.cc') TraceFlag('PcSpeaker') |