File: indent_constraint2.v

package info (click to toggle)
verilog-mode 20161124.fd230e6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 3,764 kB
  • ctags: 5,143
  • sloc: lisp: 12,430; perl: 293; makefile: 146; sh: 35; fortran: 2
file content (25 lines) | stat: -rw-r--r-- 709 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

constraint Cepon_gate_random::grant_relations_c {
						 foreach (grant_relation_m[index]) {
										    if ((index == 0) && (last_start_time_m < time_stamp_m+`MINIMUM_TIME_TO_GATE)) grant_relation_m[index] == EPON_GATE_IN_ORDER;
										    
										    else {
   
   grant_relation_m[index] dist {
				 EPON_GATE_IN_ORDER :/55,
				 EPON_GATE_1ST_CONTAINS_2ND :/5,
				 EPON_GATE_2ND_CONTAINS_1ST :/5,
				 EPON_GATE_1ST_START_2ND_START :/5,
				 EPON_GATE_2ND_START_1ST_START :/5,
				 EPON_GATE_NO_GAP_1ST :/5,
				 EPON_GATE_NO_GAP_2ND :/5,
				 EPON_GATE_1CC_GAP :/5,
				 EPON_GATE_1CC_INTERLEAVE :/5,
				 EQUAL :/5
                        };

}
										    
										    }
						 
						 }