diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 01:31:32 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-11 01:31:32 -0700 |
commit | 8c532d629732e93fa23a38328b653eb4c2314936 (patch) | |
tree | 99b731ecb4beba3f6db44f54c24bcb50041baf20 /src/dev/x86/I8259.py | |
parent | cf9afbba510ceac86e011a4b37ec848cd7f7a6ed (diff) | |
download | gem5-8c532d629732e93fa23a38328b653eb4c2314936.tar.xz |
X86: Hook the CMOS device to the I8259 PICs.
Diffstat (limited to 'src/dev/x86/I8259.py')
-rw-r--r-- | src/dev/x86/I8259.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/I8259.py b/src/dev/x86/I8259.py index a599a5b3c..19670dde9 100644 --- a/src/dev/x86/I8259.py +++ b/src/dev/x86/I8259.py @@ -34,4 +34,4 @@ class I8259(BasicPioDevice): type = 'I8259' cxx_class='X86ISA::I8259' pio_latency = Param.Latency('1ns', "Programmed IO latency in simticks") - master = Param.Bool(True, 'If this PIC is the master or slave') + master = Param.I8259('The master PIC this PIC is cascaded with, if any') |