diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-01-31 23:33:54 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-01-31 23:33:54 -0800 |
commit | 6a3f255a84d93f3e621319fd81f355416e385c8c (patch) | |
tree | e6dd2386d3989fdd3169d66a14c1a057463ca323 /src/dev/x86/i8254.hh | |
parent | 64b663c6071ecd58eff6dacd38ee351038259427 (diff) | |
download | gem5-6a3f255a84d93f3e621319fd81f355416e385c8c.tar.xz |
X86: Rework interrupt pins to allow one to many connections.
Diffstat (limited to 'src/dev/x86/i8254.hh')
-rw-r--r-- | src/dev/x86/i8254.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/x86/i8254.hh b/src/dev/x86/i8254.hh index e6860b2c4..7de20dfd4 100644 --- a/src/dev/x86/i8254.hh +++ b/src/dev/x86/i8254.hh @@ -38,7 +38,7 @@ namespace X86ISA { -class IntPin; +class IntSourcePin; class I8254 : public BasicPioDevice { @@ -64,7 +64,7 @@ class I8254 : public BasicPioDevice X86Intel8254Timer pit; - IntPin *intPin; + IntSourcePin *intPin; void counterInterrupt(unsigned int num); |