1#include "mem/hmc_controller.hh"
2
3#include "base/random.hh"
4#include "debug/HMCController.hh"
3#include "mem/hmc_controller.hh"
5
6HMCController::HMCController(const HMCControllerParams* p) :
7 NoncoherentXBar(p),
8 n_master_ports(p->port_master_connection_count),
9 rr_counter(0)
10{
11 assert(p->port_slave_connection_count == 1);
12}

--- 106 unchanged lines hidden ---