Deleted Added
sdiff udiff text old ( 9465:4ae4f3f4b870 ) new ( 11664:2365e9e396f7 )
full compact
1/*
2 * Copyright (c) 2011 Advanced Micro Devices, Inc.
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;

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

27 */
28
29#include "mem/ruby/network/BasicRouter.hh"
30
31BasicRouter::BasicRouter(const Params *p)
32 : ClockedObject(p)
33{
34 m_id = p->router_id;
35 m_latency = p->latency;
36}
37
38void
39BasicRouter::init()
40{
41}
42
43void
44BasicRouter::print(std::ostream& out) const
45{
46 out << name();
47}
48
49BasicRouter *
50BasicRouterParams::create()
51{
52 return new BasicRouter(this);
53}