i82094aa.cc (6136:4f8af2f3185f) i82094aa.cc (6137:d3ee4e0d690c)
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 168 unchanged lines hidden (view full) ---

177
178void
179X86ISA::I82094AA::lowerInterruptPin(int number)
180{
181 assert(number < TableSize);
182 pinStates[number] = false;
183}
184
1/*
2 * Copyright (c) 2008 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 168 unchanged lines hidden (view full) ---

177
178void
179X86ISA::I82094AA::lowerInterruptPin(int number)
180{
181 assert(number < TableSize);
182 pinStates[number] = false;
183}
184
185void
186X86ISA::I82094AA::registerLocalApic(int initialId, Interrupts *localApic)
187{
188 assert(localApic);
189 localApics[initialId] = localApic;
190}
191
185X86ISA::I82094AA *
186I82094AAParams::create()
187{
188 return new X86ISA::I82094AA(this);
189}
192X86ISA::I82094AA *
193I82094AAParams::create()
194{
195 return new X86ISA::I82094AA(this);
196}