?? f2_zb.v
字號:
//180度相位載波
module f2_zb(
f2,
out);
input f2;
output [7:0]out;
reg [7:0]out;
reg [3:0]count;
reg [7:0]q2;
initial
count=0;
always @(posedge f2)
begin
count=count+1; //產生地址
out=q2[7:0];
end
rom16_2
U1( .address(count[3:0]),
.inclock(f2),
.q(q2) ); //調用rom表
endmodule
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -