jeetesh
Newbie level 4
- Joined
- Dec 19, 2013
- Messages
- 7
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 54
I am getting an error at the udp instantiation line, while viewing RTL schematic, as: Unsupported Switch or User Defined Primitive
but syntex is correct.... help me.. I am using xilinkx 14.1
but syntex is correct.... help me.. I am using xilinkx 14.1
Code Verilog - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 primitive udp (d,a,b,c); output d; input a,b,c; table //a b c : d; 0 0 0 : 0; 0 0 1 : 1; 0 1 0 : 1; 0 1 1 : 0; 1 0 0 : 1; 1 0 1 : 0; 1 1 0 : 0; 1 1 1 : 1; endtable endprimitive module xor3_udp(x,y,u,v,w); input u,v,w; output x,y; and (y,u,v); udp (x,u,v,w); endmodule
Last edited by a moderator: