module top();
wire data,clk,o;
system_clock #60 clock1(data);
system_clock #30 clock1(clk);
d_prim1 d1(o, clk, data);
endmodule
module system_clock(clk);
parameter PERIOD=100;
output clk;
reg clk;
initial
clk=0;
always
begin#(PERIOD/2)clk=~clk;
#(PERIOD-PERIOD/2)clk=~clk;
end
always@(posedge clk)if($time>1000)#(PERIOD-1)$stop;
endmodule
primitive d_prim1(q_out, clock, data);
output q_out;
input clock, data;
reg q_out;
table
(01) 0 : ? : 0;
(01) 1 : ? : 1;
(0?) 1 : 1 : 1;
(?0) ? : ? : -;
? (??) : ? : -;
endtable
endprimitive
Friday, December 21, 2007
Friday, December 14, 2007
1位元半加法器設計 採用 UDP
module top();
wire a,b,c,s;
system_clock #100 clock1(a);
system_clock #50 clock1(b);
Adder_Sum S1(s, a, b);
Adder_Carry C1(c, a, b);
endmodule
module system_clock(clk);
parameter PERIOD=100;
output clk;
reg clk;
initial
clk=0;
always
begin#(PERIOD/2)clk=~clk;
#(PERIOD-PERIOD/2)clk=~clk;
end
always@(posedge clk)if($time>1000)#(PERIOD-1)$stop;
endmodule
primitive Adder_Sum(Sum, InA, InB);
output Sum;
input InA, InB;
table
// inputs : output
00 : 0;
01 : 1;
10 : 1;
11 : 0;
endtable
endprimitive
primitive Adder_Carry(Carry, InA, InB);
output Carry;
input InA, InB;
table
// inputs : output
00 : 0;
01 : 0;
10 : 0;
11 : 1;
endtable
endprimitive
wire a,b,c,s;
system_clock #100 clock1(a);
system_clock #50 clock1(b);
Adder_Sum S1(s, a, b);
Adder_Carry C1(c, a, b);
endmodule
module system_clock(clk);
parameter PERIOD=100;
output clk;
reg clk;
initial
clk=0;
always
begin#(PERIOD/2)clk=~clk;
#(PERIOD-PERIOD/2)clk=~clk;
end
always@(posedge clk)if($time>1000)#(PERIOD-1)$stop;
endmodule
primitive Adder_Sum(Sum, InA, InB);
output Sum;
input InA, InB;
table
// inputs : output
00 : 0;
01 : 1;
10 : 1;
11 : 0;
endtable
endprimitive
primitive Adder_Carry(Carry, InA, InB);
output Carry;
input InA, InB;
table
// inputs : output
00 : 0;
01 : 0;
10 : 0;
11 : 1;
endtable
endprimitive
Friday, September 28, 2007
請96-上學期(96年9月)修課同學在這個訊息下, 留下自己的部落格網址....
為方便評估同學學習成效, 請在這個訊息下回POST, 留下自己的部落格網址....
回覆意見 comment 格式如下:學號, 名字(後兩字), 網址
例如: S950001, XX, http://????.blogspot.com
謝謝合作.......
回覆意見 comment 格式如下:學號, 名字(後兩字), 網址
例如: S950001, XX, http://????.blogspot.com
謝謝合作.......
Subscribe to:
Posts (Atom)