Skip to content

Commit

Permalink
Reenable test_bad_aarsize
Browse files Browse the repository at this point in the history
The debug unit was fixed, it now handles aarsize properly for 32 bit buses.
  • Loading branch information
bluewww committed Mar 8, 2019
1 parent c56254e commit ae3d36a
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions rtl/tb/tb_pulp.sv
Original file line number Diff line number Diff line change
Expand Up @@ -844,15 +844,16 @@ module tb_pulp;
s_trstn, s_tdi, s_tdo);
$display("[TB] %t x2 is %x", $realtime, dm_data);

// $display("[TB] %t - TEST abstract commands and program buffer (old)", $realtime);
// //Test Abstract Commands
// debug_mode_if.testAbstractsCommands_andProgramBuffer(error, BEGIN_L2_INSTR,
// s_tck, s_tms, s_trstn,
// s_tdi, s_tdo);
// if(error)
// $display("[TB] %t FAIL", $realtime);
// else
// $display("[TB] %t OK", $realtime);

// currently results in in illegal instruction because it makes a 64
// bit load
$display("[TB] %t - TEST bad abstract command (aarsize > 2)", $realtime);
debug_mode_if.test_bad_aarsize (error, s_tck, s_tms, s_trstn, s_tdi, s_tdo);
if(error)
$display("[TB] %t FAIL", $realtime);
else
$display("[TB] %t OK", $realtime);


$display("[TB] %t - TEST abstract commands and program buffer", $realtime);
debug_mode_if.test_abstract_cmds_prog_buf(error, BEGIN_L2_INSTR,
Expand Down

0 comments on commit ae3d36a

Please sign in to comment.