小舍YZ 发表于 2017-6-23 15:17:11

基于ISE的开发流程

基于ISE的开发流程

例:ISE开发流程演示代码,将输入的数据加1寄存并输出。
module test(clk, din, dout);
          input clk;
          input din;
          output dout;

         reg dout;

          always @(posedge clk) begin
          dout <= din + 1;
          end

endmodule

(开发流程具体步骤需看后续的贴子)

zxopenljx 发表于 2020-6-16 09:35:29

基于ISE的开发流程
页: [1]
查看完整版本: 基于ISE的开发流程