RubyDirectedTester.hh (8975:7f36d4436074) RubyDirectedTester.hh (9031:32ecc0217c5e)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

49 public:
50 class CpuPort : public MasterPort
51 {
52 private:
53 RubyDirectedTester *tester;
54
55 public:
56 CpuPort(const std::string &_name, RubyDirectedTester *_tester,
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

49 public:
50 class CpuPort : public MasterPort
51 {
52 private:
53 RubyDirectedTester *tester;
54
55 public:
56 CpuPort(const std::string &_name, RubyDirectedTester *_tester,
57 Port::PortId _id)
57 PortID _id)
58 : MasterPort(_name, _tester, _id), tester(_tester)
59 {}
60
61 protected:
62 virtual bool recvTimingResp(PacketPtr pkt);
63 virtual void recvRetry()
64 { panic("%s does not expect a retry\n", name()); }
65 };

--- 54 unchanged lines hidden ---
58 : MasterPort(_name, _tester, _id), tester(_tester)
59 {}
60
61 protected:
62 virtual bool recvTimingResp(PacketPtr pkt);
63 virtual void recvRetry()
64 { panic("%s does not expect a retry\n", name()); }
65 };

--- 54 unchanged lines hidden ---