mirror of https://github.com/YosysHQ/yosys.git
enum in package test
This commit is contained in:
parent
febe7706a2
commit
caf35896da
|
@ -1,11 +1,14 @@
|
|||
package pkg;
|
||||
typedef logic [7:0] uint8_t;
|
||||
typedef enum logic [7:0] {bb=8'hBB} enum8_t;
|
||||
endpackage
|
||||
|
||||
module top;
|
||||
|
||||
(* keep *) (pkg::uint8_t) a = 8'hAA;
|
||||
(* keep *) (pkg::enum8_t) b_enum = pkg::bb;
|
||||
|
||||
always @* assert(a == 8'hAA);
|
||||
always @* assert(b_enum == 8'hBB);
|
||||
|
||||
endmodule
|
||||
|
|
Loading…
Reference in New Issue