diff options
author | Gabe Black <gabeblack@google.com> | 2019-09-04 17:10:02 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-09-12 20:36:39 +0000 |
commit | c9fabe117947a82e05bf08cbf4f69365c2334304 (patch) | |
tree | 77082b940605ee1e082a88d14416fa1a13614716 /src/dev/SConscript | |
parent | 8f0efe340bcac14b45f6f781c068f67811b3c273 (diff) | |
download | gem5-c9fabe117947a82e05bf08cbf4f69365c2334304.tar.xz |
dev: Generalize the x86 int source/sink pins.
Sink pins are now templated based on the underlying device types, and
the pins themselves are based on the new, generalized Port mechanism.
Change-Id: I09c678c56f6eb6b4a167c12f221ae0241fe99c2d
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20700
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/dev/SConscript')
-rw-r--r-- | src/dev/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dev/SConscript b/src/dev/SConscript index ecb6dccbb..69c30a693 100644 --- a/src/dev/SConscript +++ b/src/dev/SConscript @@ -36,6 +36,9 @@ Source('io_device.cc') Source('isa_fake.cc') Source('dma_device.cc') +SimObject('IntPin.py') +Source('intpin.cc') + DebugFlag('IsaFake') DebugFlag('DMA') |