atomic.hh (3349:fec4a86fa212) atomic.hh (3401:1df0cb879413)
1/*
2 * Copyright (c) 2002-2005 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;

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

82 class CpuPort : public Port
83 {
84
85 AtomicSimpleCPU *cpu;
86
87 public:
88
89 CpuPort(const std::string &_name, AtomicSimpleCPU *_cpu)
1/*
2 * Copyright (c) 2002-2005 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;

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

82 class CpuPort : public Port
83 {
84
85 AtomicSimpleCPU *cpu;
86
87 public:
88
89 CpuPort(const std::string &_name, AtomicSimpleCPU *_cpu)
90 : Port(_name), cpu(_cpu)
90 : Port(_name, _cpu), cpu(_cpu)
91 { }
92
93 protected:
94
95 virtual bool recvTiming(PacketPtr pkt);
96
97 virtual Tick recvAtomic(PacketPtr pkt);
98

--- 46 unchanged lines hidden ---
91 { }
92
93 protected:
94
95 virtual bool recvTiming(PacketPtr pkt);
96
97 virtual Tick recvAtomic(PacketPtr pkt);
98

--- 46 unchanged lines hidden ---