File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Labs/10. Interrupt subsystem Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -360,23 +360,23 @@ mie_a: assert property (
360
360
((addr_i === MIE_ADDR ) && $rose (write_enable_i)) | => (mie_o === data_ref)
361
361
)else begin
362
362
err_count++ ;
363
- $display (" Incorrect value of mie_o : mie_o = %08h while if should be %08h .\n " , $sampled (mie_o), $sampled (data_ref));
363
+ $display (" Incorrect value of mie_o : mie_o = %08h while it should be %08h .\n " , $sampled (mie_o), $sampled (data_ref));
364
364
end
365
365
366
366
mepc_a : assert property (
367
367
@ (posedge clk_i) disable iff ( rst_i || trap_i )
368
368
((addr_i === MEPC_ADDR ) && $rose (write_enable_i)) | => (mepc_o === data_ref)
369
369
)else begin
370
370
err_count++ ;
371
- $display (" Incorrect value of mepc_o : mepc_o = %08h while if should be %08h .\n " , $sampled (mepc_o), $sampled (data_ref));
371
+ $display (" Incorrect value of mepc_o : mepc_o = %08h while it should be %08h .\n " , $sampled (mepc_o), $sampled (data_ref));
372
372
end
373
373
374
374
mtvec_a : assert property (
375
375
@ (posedge clk_i) disable iff ( rst_i || trap_i )
376
376
((addr_i === MTVEC_ADDR ) && $rose (write_enable_i)) | => (mtvec_o === data_ref)
377
377
)else begin
378
378
err_count++ ;
379
- $display (" Incorrect value of mtvec_o : mtvec_o = %08h while if should be %08h .\n " , $sampled (mtvec_o), $sampled (data_ref));
379
+ $display (" Incorrect value of mtvec_o : mtvec_o = %08h while it should be %08h .\n " , $sampled (mtvec_o), $sampled (data_ref));
380
380
end
381
381
382
382
mepc_stability_a : assert property (
You can’t perform that action at this time.
0 commit comments