//////////////////////////////////////////////////////////////////////////////
// Design Name : dflip flop primitive
// File Name : d_flipflop.v
// Function :
// Author : Sidharth(DVLSI 31)
//Permission : This code only for educational purpose only
//contact :sidharth.sankar77@gmail.com
//////////////////////////////////////////////////////////////////////////////
primitive d_flipflop(q,clear,clk,d);
output q;
reg q;
input d,clk,clear;
initial q=1'b1;
table
//clear clk d q
0 ? ? : ? : 0;
1 (01) 1 : ? : 1;
1 (01) 0 : ? : 0;
1 (0?) 0 : ? : 0;
1 (0?) 1 : ? : 1;
1 (10) ? : ? : -;
? ? (??) : ? : -;
(??) ? ? : ? : -;
endtable
endprimitive // d_flipflop
Saturday, June 15, 2013
D flip flop primitive in verilog example
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment