1 #ifndef MEM_IF_VRH
2 #define MEM_IF_VRH
3
4 #include "vera_defines.vrh"
5
6 interface mem_if {
7 input clock CLOCK;
8 inout chip_en PHOLD NHOLD #1 PSAMPLE NSAMPLE #-1 ;
9 inout read_write PHOLD NHOLD #1 PSAMPLE NSAMPLE #-1 ;
10 inout [7:0] address PHOLD NHOLD #1 PSAMPLE NSAMPLE #-1 ;
11 inout [7:0] data_in PHOLD NHOLD #1 PSAMPLE NSAMPLE #-1 ;
12 inout [7:0] data_out PHOLD NHOLD #1 PSAMPLE NSAMPLE #-1 ;
13 }
14
15 #endif
You could download file vera_examples here
|