132d131
< l0_cntrl.peer = l1_cntrl
133a133,145
> # Connect the L0 and L1 controllers
> l0_cntrl.bufferToL1 = l1_cntrl.bufferFromL0
> l0_cntrl.bufferFromL1 = l1_cntrl.bufferToL0
>
> # Connect the L1 controllers and the network
> l1_cntrl.requestToL2 = ruby_system.network.slave
> l1_cntrl.responseToL2 = ruby_system.network.slave
> l1_cntrl.unblockToL2 = ruby_system.network.slave
>
> l1_cntrl.requestFromL2 = ruby_system.network.master
> l1_cntrl.responseFromL2 = ruby_system.network.master
>
>
148a161,169
> # Connect the L2 controllers and the network
> l2_cntrl.DirRequestFromL2Cache = ruby_system.network.slave
> l2_cntrl.L1RequestFromL2Cache = ruby_system.network.slave
> l2_cntrl.responseFromL2Cache = ruby_system.network.slave
>
> l2_cntrl.unblockToL2Cache = ruby_system.network.master
> l2_cntrl.L1RequestToL2Cache = ruby_system.network.master
> l2_cntrl.responseToL2Cache = ruby_system.network.master
>
185a207,211
> # Connect the directory controllers and the network
> dir_cntrl.requestToDir = ruby_system.network.master
> dir_cntrl.responseToDir = ruby_system.network.master
> dir_cntrl.responseFromDir = ruby_system.network.slave
>