summaryrefslogtreecommitdiff
path: root/src/dev/x86/I82094AA.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-01 22:40:51 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-01 22:40:51 -0800
commit73f579a804f33092aa2dfac09a57d6c6b2acaf3d (patch)
tree0593659f7735e91791cb69982ca6145181450fd7 /src/dev/x86/I82094AA.py
parent5a4eed5d34c814486086bf45d7750905de32d972 (diff)
downloadgem5-73f579a804f33092aa2dfac09a57d6c6b2acaf3d.tar.xz
X86: Add some missing default arguments.
Diffstat (limited to 'src/dev/x86/I82094AA.py')
-rw-r--r--src/dev/x86/I82094AA.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/I82094AA.py b/src/dev/x86/I82094AA.py
index 5ca58614d..9d57beed1 100644
--- a/src/dev/x86/I82094AA.py
+++ b/src/dev/x86/I82094AA.py
@@ -37,7 +37,7 @@ class I82094AA(BasicPioDevice):
pio_latency = Param.Latency('1ns', "Programmed IO latency in simticks")
pio_addr = Param.Addr("Device address")
int_port = Port("Port for sending and receiving interrupt messages")
- external_int_pic = Param.I8259("External PIC, if any")
+ external_int_pic = Param.I8259(NULL, "External PIC, if any")
def pin(self, line):
return X86IntSinkPin(device=self, number=line)