mirror of
https://github.com/sxpert/hp-saturn
synced 2024-12-26 09:58:09 +01:00
fix the conditions for the debugger to spew chars aout
This commit is contained in:
parent
e09ed6bc28
commit
6d940c7f95
1 changed files with 2 additions and 2 deletions
|
@ -242,8 +242,8 @@ initial begin
|
||||||
bus_busy = 1'b1;
|
bus_busy = 1'b1;
|
||||||
end
|
end
|
||||||
|
|
||||||
wire [0:0] bus_read_valid = bus_clk_en && i_phases[2] && !bus_busy;
|
wire [0:0] bus_read_valid = bus_clk_en && i_phases[2] && !bus_busy && !alu_busy;
|
||||||
wire [0:0] bus_busy_valid = bus_clk_en && i_phases[2] && bus_busy;
|
wire [0:0] bus_busy_valid = bus_clk_en && i_phases[2] && bus_busy && !alu_busy;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* bus chronograms
|
* bus chronograms
|
||||||
|
|
Loading…
Reference in a new issue