Latest Post
Verilog: User Defined Premitives (UDP) of AND Gate
- Get link
- X
- Other Apps
Verilog Code for User Defined Primitives of AND Gate
primitive udp_and(table
input a, b,
output out
);//a b : out--------------0 0 : 0;0 1 : 0;1 0 : 0;1 1 : 1;endtableendprimitive
Also See:
- Get link
- X
- Other Apps
Comments
Post a Comment