122c122
< #
---
>
124d123
< #
127a127,137
> # Connect the L1 controller and the network
> # Connect the buffers from the controller to network
> l1_cntrl.requestFromCache = ruby_system.network.slave
> l1_cntrl.responseFromCache = ruby_system.network.slave
> l1_cntrl.unblockFromCache = ruby_system.network.slave
>
> # Connect the buffers from the network to the controller
> l1_cntrl.forwardToCache = ruby_system.network.master
> l1_cntrl.responseToCache = ruby_system.network.master
>
>
200a211,221
> # Connect the directory controller to the network
> dir_cntrl.forwardFromDir = ruby_system.network.slave
> dir_cntrl.responseFromDir = ruby_system.network.slave
> dir_cntrl.dmaResponseFromDir = ruby_system.network.slave
>
> dir_cntrl.unblockToDir = ruby_system.network.master
> dir_cntrl.responseToDir = ruby_system.network.master
> dir_cntrl.requestToDir = ruby_system.network.master
> dir_cntrl.dmaRequestToDir = ruby_system.network.master
>
>
219a241,245
> # Connect the dma controller to the network
> dma_cntrl.responseFromDir = ruby_system.network.slave
> dma_cntrl.requestToDir = ruby_system.network.master
>
>
222d247
<