mirror of
https://github.com/supleed2/ELEC70056-HSV-CW2.git
synced 2024-11-10 02:15:47 +00:00
Add initial assume to AHBGPIO.sv
This commit is contained in:
parent
0f8578e1b8
commit
4edfce0e03
|
@ -68,8 +68,6 @@ module AHBGPIO
|
||||||
reg last_HWRITE;
|
reg last_HWRITE;
|
||||||
reg last_HSEL;
|
reg last_HSEL;
|
||||||
|
|
||||||
integer i;
|
|
||||||
|
|
||||||
assign HREADYOUT = 1'b1;
|
assign HREADYOUT = 1'b1;
|
||||||
|
|
||||||
// Set Registers from address phase
|
// Set Registers from address phase
|
||||||
|
@ -115,12 +113,12 @@ module AHBGPIO
|
||||||
//check behaviour
|
//check behaviour
|
||||||
|
|
||||||
assert_parity: assert property
|
assert_parity: assert property
|
||||||
( @posedge(HCLK) disable iff (!HRESETn)
|
( @(posedge HCLK) disable iff (!HRESETn)
|
||||||
!PARITYERR;
|
!PARITYERR
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_gpio_write: assert property
|
assert_gpio_write: assert property
|
||||||
( @posedge(HCLK) disable iff (!HRESETn)
|
( @(posedge HCLK) disable iff (!HRESETn)
|
||||||
((gpio_dir == 16'h0001)
|
((gpio_dir == 16'h0001)
|
||||||
&& (HADDR[7:0] == gpio_data_addr)
|
&& (HADDR[7:0] == gpio_data_addr)
|
||||||
&& HSEL
|
&& HSEL
|
||||||
|
@ -130,7 +128,7 @@ module AHBGPIO
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_gpio_read: assert property
|
assert_gpio_read: assert property
|
||||||
( @posedge(HCLK) disable iff (!HRESETn)
|
( @(posedge HCLK) disable iff (!HRESETn)
|
||||||
((gpio_dir == 16'h0000)
|
((gpio_dir == 16'h0000)
|
||||||
&& (HADDR[7:0] == gpio_data_addr)
|
&& (HADDR[7:0] == gpio_data_addr)
|
||||||
// && HSEL // HSEL not used in Read always_ff
|
// && HSEL // HSEL not used in Read always_ff
|
||||||
|
@ -141,7 +139,7 @@ module AHBGPIO
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_gpio_dir: assert property
|
assert_gpio_dir: assert property
|
||||||
( @posedge(HCLK) disable iff (!HRESETn)
|
( @(posedge HCLK) disable iff (!HRESETn)
|
||||||
((HADDR[7:0] == gpio_dir_addr)
|
((HADDR[7:0] == gpio_dir_addr)
|
||||||
&& HSEL
|
&& HSEL
|
||||||
&& HWRITE
|
&& HWRITE
|
||||||
|
@ -149,4 +147,9 @@ module AHBGPIO
|
||||||
|-> (gpio_dir == $past(HWDATA[15:0], 1))
|
|-> (gpio_dir == $past(HWDATA[15:0], 1))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
assume_initial_valid: assume
|
||||||
|
( gpio_dir == 16'h0000
|
||||||
|
|| gpio_dir == 16'h0001
|
||||||
|
);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Reference in a new issue