code.v
来自「2dpsk,maxplus软件,包含连接原理图各个模块程序代码,可运行,管脚已经」· Verilog 代码 · 共 23 行
V
23 行
//差分编码
module code(clk,m,out);
input clk;
input m;
output out;
reg a;
reg out;
wire b;
assign b=a^m;
always @(posedge clk)
begin
a=m;
out=b;
end
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?