13 lines
203 B
Coq
13 lines
203 B
Coq
|
|
// Check that conflicting UDP port declarations generate an error.
|
||
|
|
|
||
|
|
primitive udp_port_decl_conflict_fail (o, i);
|
||
|
|
output o;
|
||
|
|
input o;
|
||
|
|
input i;
|
||
|
|
|
||
|
|
table
|
||
|
|
0 : 0;
|
||
|
|
1 : 1;
|
||
|
|
endtable
|
||
|
|
endprimitive
|