URL
https://opencores.org/ocsvn/wbscope/wbscope/trunk
Subversion Repositories wbscope
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 9 to Rev 10
- ↔ Reverse comparison
Rev 9 → Rev 10
/wbscope/trunk/rtl/wbscope.v
296,7 → 296,8
reg [31:0] nxt_mem; |
always @(posedge i_wb_clk) |
nxt_mem <= mem[raddr+waddr+ |
((bw_cyc_stb)&&(i_wb_addr)&&(~i_wb_we))]; |
(((bw_cyc_stb)&&(i_wb_addr)&&(~i_wb_we)) ? |
{{(LGMEM-1){1'b0}},1'b1} : { (LGMEM){1'b0}} )]; |
|
wire [4:0] bw_lgmem; |
assign bw_lgmem = LGMEM; |