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}
36
37void
38BasicRouter::init()
39{
40}
41
42void
43BasicRouter::print(std::ostream& out) const
44{
45 out << name();
46}
47
48BasicRouter *
49BasicRouterParams::create()
50{
51 return new BasicRouter(this);
52}