Tests: Remove old hack from before unpacked structs
This commit is contained in:
parent
fa8eaf7355
commit
b5a6b34968
|
|
@ -6,12 +6,6 @@
|
||||||
|
|
||||||
// Contributed by M W Lund, Atmel Corporation.
|
// Contributed by M W Lund, Atmel Corporation.
|
||||||
|
|
||||||
`ifdef VERILATOR //TODO
|
|
||||||
`define PACKED packed
|
|
||||||
`else
|
|
||||||
`define packed
|
|
||||||
`endif
|
|
||||||
|
|
||||||
module ports
|
module ports
|
||||||
#( parameter
|
#( parameter
|
||||||
ID = 1 )
|
ID = 1 )
|
||||||
|
|
@ -42,12 +36,12 @@ module ports
|
||||||
|
|
||||||
|
|
||||||
// **** Interal Registers ****
|
// **** Interal Registers ****
|
||||||
struct `PACKED
|
struct
|
||||||
{
|
{
|
||||||
logic [7:0][1:0] in;
|
logic [7:0][1:0] in;
|
||||||
logic [7:0] dir;
|
logic [7:0] dir;
|
||||||
logic [7:0] out;
|
logic [7:0] out;
|
||||||
struct `PACKED
|
struct
|
||||||
{
|
{
|
||||||
logic [7:2] reserved;
|
logic [7:2] reserved;
|
||||||
logic pullupen;
|
logic pullupen;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue