mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-03 10:15:19 +00:00
Added signal to monitor HBURST and comments for each burst in busdp
This commit is contained in:
parent
80965f953c
commit
ae460eccd4
@ -67,6 +67,7 @@ add wave -hex /testbench/dut/core/ebu/HTRANS
|
|||||||
add wave -hex /testbench/dut/core/ebu/HRDATA
|
add wave -hex /testbench/dut/core/ebu/HRDATA
|
||||||
add wave -hex /testbench/dut/core/ebu/HWRITE
|
add wave -hex /testbench/dut/core/ebu/HWRITE
|
||||||
add wave -hex /testbench/dut/core/ebu/HWDATA
|
add wave -hex /testbench/dut/core/ebu/HWDATA
|
||||||
|
add wave -hex /testbench/dut/core/ebu/HBURST
|
||||||
add wave -hex /testbench/dut/core/ebu/CaptureDataM
|
add wave -hex /testbench/dut/core/ebu/CaptureDataM
|
||||||
add wave -divider
|
add wave -divider
|
||||||
|
|
||||||
|
@ -70,10 +70,10 @@ module busdp #(parameter WORDSPERLINE, LINELEN, LOGWPL, CACHE_ENABLED)
|
|||||||
|
|
||||||
always_comb begin
|
always_comb begin
|
||||||
case(WORDSPERLINE)
|
case(WORDSPERLINE)
|
||||||
4: LSUBurstType = 3'b010;
|
4: LSUBurstType = 3'b010; // WRAP4
|
||||||
8: LSUBurstType = 3'b100;
|
8: LSUBurstType = 3'b100; // WRAP8
|
||||||
16: LSUBurstType = 3'b110;
|
16: LSUBurstType = 3'b110; // WRAP16
|
||||||
default: LSUBurstType = 3'b000;
|
default: LSUBurstType = 3'b000; // No Burst
|
||||||
endcase
|
endcase
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user