Tests: Fix duplicated if.

This commit is contained in:
Wilson Snyder 2022-12-12 21:32:45 -05:00
parent d192372c7e
commit f331c192b4

View File

@ -45,6 +45,7 @@ module t(/*AUTOARG*/
else if (cyc == 2) begin
`checkh(never_driven, 32'h888);
end
//
// Check release with no force
else if (cyc == 10) begin
never_forced <= 5432;
@ -60,35 +61,36 @@ module t(/*AUTOARG*/
end
//
// bus
else if (cyc == 10) begin
else if (cyc == 20) begin
`checkh(bus, 4'b0101);
force bus = 4'b0111;
end
else if (cyc == 11) begin
else if (cyc == 21) begin
`checkh(bus, 4'b0111);
force bus = 4'b1111;
end
else if (cyc == 12) begin
else if (cyc == 22) begin
`checkh(bus, 4'b1111);
release bus;
end
else if (cyc == 13) begin
else if (cyc == 23) begin
`checkh(bus, 4'b0101);
end
else if (cyc == 20) begin
//
else if (cyc == 30) begin
force_bus();
end
else if (cyc == 21) begin
else if (cyc == 31) begin
`checkh(bus, 4'b0110);
end
else if (cyc == 22) begin
else if (cyc == 32) begin
release bus[0];
end
else if (cyc == 23) begin
else if (cyc == 33) begin
`checkh(bus, 4'b0111);
release_bus();
end
else if (cyc == 24) begin
else if (cyc == 34) begin
`checkh(in, 4'b0101);
`checkh(bus, 4'b0101);
end