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

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

59 {}
60
61 uint32_t idx;
62
63 protected:
64 virtual bool recvTiming(PacketPtr pkt);
65 virtual void recvRetry()
66 { panic("%s does not expect a retry\n", name()); }
67 virtual Tick recvAtomic(PacketPtr pkt);
68 virtual void recvFunctional(PacketPtr pkt) { }
67 };
68
69 typedef RubyDirectedTesterParams Params;
70 RubyDirectedTester(const Params *p);
71 ~RubyDirectedTester();
72
73 virtual MasterPort &getMasterPort(const std::string &if_name,
74 int idx = -1);

--- 47 unchanged lines hidden ---