mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Added signal to monitor HBURST and comments for each burst in busdp
This commit is contained in:
parent
08430a1e85
commit
80fc716cd7
@ -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/HWRITE
|
||||
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 -divider
|
||||
|
||||
|
@ -70,10 +70,10 @@ module busdp #(parameter WORDSPERLINE, LINELEN, LOGWPL, CACHE_ENABLED)
|
||||
|
||||
always_comb begin
|
||||
case(WORDSPERLINE)
|
||||
4: LSUBurstType = 3'b010;
|
||||
8: LSUBurstType = 3'b100;
|
||||
16: LSUBurstType = 3'b110;
|
||||
default: LSUBurstType = 3'b000;
|
||||
4: LSUBurstType = 3'b010; // WRAP4
|
||||
8: LSUBurstType = 3'b100; // WRAP8
|
||||
16: LSUBurstType = 3'b110; // WRAP16
|
||||
default: LSUBurstType = 3'b000; // No Burst
|
||||
endcase
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user