#ifndef MEMORY_TB_PORTS_H #define MEMORY_TB_PORTS_H struct tagInput { char *clk; char *rdata; }; struct tagOutput { unsigned long wr; unsigned long cs; unsigned long addr; unsigned long wdata; unsigned long done; }; typedef struct tagInput INVECTOR; typedef struct tagOutput OUTVECTOR; #endif