Skip to content

Commit

Permalink
TMU: testbench: display mask on bus writes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Jul 26, 2011
1 parent 9a06b83 commit c43799e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cores/tmu2/test/tb_tmu2.v
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ always @(posedge sys_clk) begin
write_burstcount = 1;
write_addr = fmlw_adr;

//$display("Starting FML burst WRITE at address %x data=%x", write_addr, fmlw_do);
//$display("Starting FML burst WRITE at address %x data=%x mask=%b", write_addr, fmlw_do, fmlw_sel);
handle_write;

fmlw_ack = 1'b1;
Expand All @@ -294,7 +294,7 @@ always @(posedge sys_clk) begin
write_addr = write_addr + 8;
write_burstcount = write_burstcount + 1;

//$display("Continuing FML burst WRITE at address %x data=%x", write_addr, fmlw_do);
//$display("Continuing FML burst WRITE at address %x data=%x mask=%b", write_addr, fmlw_do, fmlw_sel);
handle_write;

if(write_burstcount == 4)
Expand Down

0 comments on commit c43799e

Please sign in to comment.