mirror of https://github.com/YosysHQ/picorv32.git
Some minor cleanups
This commit is contained in:
parent
d1d3c3c5e1
commit
72158ba4a5
22
picorv32.v
22
picorv32.v
|
@ -1168,8 +1168,10 @@ module picorv32 #(
|
||||||
decoder_pseudo_trigger_q <= decoder_pseudo_trigger;
|
decoder_pseudo_trigger_q <= decoder_pseudo_trigger;
|
||||||
do_waitirq <= 0;
|
do_waitirq <= 0;
|
||||||
|
|
||||||
if (ENABLE_TRACE)
|
trace_valid <= 0;
|
||||||
trace_valid <= 0;
|
|
||||||
|
if (!ENABLE_TRACE)
|
||||||
|
trace_data <= 'bx;
|
||||||
|
|
||||||
if (!resetn) begin
|
if (!resetn) begin
|
||||||
reg_pc <= PROGADDR_RESET;
|
reg_pc <= PROGADDR_RESET;
|
||||||
|
@ -1663,19 +1665,15 @@ module picorv32 #(
|
||||||
|
|
||||||
// Formal Verification
|
// Formal Verification
|
||||||
`ifdef FORMAL
|
`ifdef FORMAL
|
||||||
reg [3:0] cycle = 0;
|
reg [3:0] last_mem_nowait;
|
||||||
always @(posedge clk)
|
always @(posedge clk)
|
||||||
if (~&cycle) cycle <= cycle + 1;
|
last_mem_nowait <= {last_mem_nowait, mem_ready || !mem_valid};
|
||||||
|
restrict property (|last_mem_nowait || mem_ready || !mem_valid);
|
||||||
reg [4:0] last_mem_ready;
|
|
||||||
always @(posedge clk)
|
|
||||||
last_mem_ready <= {last_mem_ready, mem_ready};
|
|
||||||
restrict property (|last_mem_ready);
|
|
||||||
|
|
||||||
reg ok;
|
reg ok;
|
||||||
always @* begin
|
always @* begin
|
||||||
restrict (resetn == |cycle);
|
restrict (resetn == !$initstate);
|
||||||
if (cycle) begin
|
if (!$initstate) begin
|
||||||
// instruction fetches are read-only
|
// instruction fetches are read-only
|
||||||
if (mem_valid && mem_instr)
|
if (mem_valid && mem_instr)
|
||||||
assert (mem_wstrb == 0);
|
assert (mem_wstrb == 0);
|
||||||
|
@ -1685,7 +1683,7 @@ module picorv32 #(
|
||||||
if (cpu_state == cpu_state_trap) ok = 1;
|
if (cpu_state == cpu_state_trap) ok = 1;
|
||||||
if (cpu_state == cpu_state_fetch) ok = 1;
|
if (cpu_state == cpu_state_fetch) ok = 1;
|
||||||
if (cpu_state == cpu_state_ld_rs1) ok = 1;
|
if (cpu_state == cpu_state_ld_rs1) ok = 1;
|
||||||
if (cpu_state == cpu_state_ld_rs2) ok = ENABLE_REGS_DUALPORT;
|
if (cpu_state == cpu_state_ld_rs2) ok = !ENABLE_REGS_DUALPORT;
|
||||||
if (cpu_state == cpu_state_exec) ok = 1;
|
if (cpu_state == cpu_state_exec) ok = 1;
|
||||||
if (cpu_state == cpu_state_shift) ok = 1;
|
if (cpu_state == cpu_state_shift) ok = 1;
|
||||||
if (cpu_state == cpu_state_stmem) ok = 1;
|
if (cpu_state == cpu_state_stmem) ok = 1;
|
||||||
|
|
Loading…
Reference in New Issue