i82094aa.cc (14294:d86488e6b60b) i82094aa.cc (14295:16025a55b380)
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;

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

80 if (if_name == "int_master")
81 return intMasterPort;
82 if (if_name == "inputs")
83 return *inputs.at(idx);
84 else
85 return BasicPioDevice::getPort(if_name, idx);
86}
87
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;

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

80 if (if_name == "int_master")
81 return intMasterPort;
82 if (if_name == "inputs")
83 return *inputs.at(idx);
84 else
85 return BasicPioDevice::getPort(if_name, idx);
86}
87
88Tick
88bool
89X86ISA::I82094AA::recvResponse(PacketPtr pkt)
90{
91 // Packet instantiated calling sendMessage() in signalInterrupt()
92 delete pkt;
89X86ISA::I82094AA::recvResponse(PacketPtr pkt)
90{
91 // Packet instantiated calling sendMessage() in signalInterrupt()
92 delete pkt;
93 return 0;
93 return true;
94}
95
96Tick
97X86ISA::I82094AA::read(PacketPtr pkt)
98{
99 assert(pkt->getSize() == 4);
100 Addr offset = pkt->getAddr() - pioAddr;
101 switch(offset) {

--- 200 unchanged lines hidden ---
94}
95
96Tick
97X86ISA::I82094AA::read(PacketPtr pkt)
98{
99 assert(pkt->getSize() == 4);
100 Addr offset = pkt->getAddr() - pioAddr;
101 switch(offset) {

--- 200 unchanged lines hidden ---