⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 del.v

📁 FPGA下PWM的Verilog 源码
💻 V
字号:
module del(clk,start,int1,int2,int3,int4,int5,int6,out1,out2,out3,out4,out5,out6) ;
  input clk,start,int1,int2,int3,int4,int5,int6;
  output out1,out2,out3,out4,out5,out6;
  reg out1,out2,out3,out4,out5,out6;
  always @(posedge clk or negedge start)
   begin 
   if(!start)
      begin
        out1=int1;
        out2=int2;
    	out3=int3;
    	out4=int4;
    	out5=int5;
    	out6=int6;
      end	
    end
  endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -