mirror of https://github.com/efabless/caravel.git
Corrected an error in the bitbang testbench (but it does not cause the
testbench to pass).
This commit is contained in:
parent
184f4a637c
commit
000a5266ef
|
@ -136,13 +136,13 @@ module mprj_bitbang_tb;
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h07);
|
write_byte(8'h07 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
|
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h03);
|
write_byte(8'h03 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
end
|
end
|
||||||
endtask
|
endtask
|
||||||
|
@ -152,25 +152,25 @@ module mprj_bitbang_tb;
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h07);
|
write_byte(8'h07 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
|
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h05);
|
write_byte(8'h05 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
|
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h07);
|
write_byte(8'h07 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
|
|
||||||
start_csb();
|
start_csb();
|
||||||
write_byte(8'h80);
|
write_byte(8'h80);
|
||||||
write_byte(8'h13);
|
write_byte(8'h13);
|
||||||
write_byte(8'h03);
|
write_byte(8'h03 << 1);
|
||||||
end_csb();
|
end_csb();
|
||||||
end
|
end
|
||||||
endtask
|
endtask
|
||||||
|
|
Loading…
Reference in New Issue