enum in package test

This commit is contained in:
Jeff Wang 2020-01-16 12:03:42 -05:00 committed by Jeff Wang
parent febe7706a2
commit caf35896da
1 changed files with 3 additions and 0 deletions

View File

@ -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