URL
https://opencores.org/ocsvn/minsoc/minsoc/trunk
Subversion Repositories minsoc
Compare Revisions
- This comparison shows the changes necessary to convert path
/minsoc/trunk/rtl
- from Rev 158 to Rev 163
- ↔ Reverse comparison
Rev 158 → Rev 163
/verilog/minsoc_tc_top.v
89,7 → 89,7
// cyc + stb + address bus width + |
// byte select bus width + we + data bus width |
// |
`define TC_IIN_W 1+1+1+`TC_AW+`TC_BSW+1+`TC_DW |
`define TC_IIN_W 1+1+`TC_AW+`TC_BSW+1+`TC_DW |
|
// |
// Traffic Cop Top |
1323,9 → 1323,9
// |
always @(posedge wb_clk_i or posedge wb_rst_i) |
if (wb_rst_i) |
req_r <= #1 3'd0; |
req_r <= 3'd0; |
else |
req_r <= #1 req_won; |
req_r <= req_won; |
|
endmodule |
|