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

📄 dac_test_black_box1_wrapper.v

📁 使用MATLAB工具
💻 V
字号:

//-----------------------------------------------------------------
// System Generator Verilog source file.
// Copyright (c) 2003 Xilinx, Inc.  All rights reserved.
// Reproduction or reuse, in any form, without the explicit written
// consent of Xilinx, Inc., is strictly prohibited.
//-----------------------------------------------------------------

`define false 0
`define true 1

module dac_test_black_box1_wrapper( din,
                                    rstn,
                                    clk,
                                    ce,
                                    dout );
  input   [11:0] din;
  input          rstn;
  input          clk;
  input          ce;
  output  [31:0] dout;
  wire   [11:0] din_wire;
  wire         rstn_wire;
  wire         clk_wire;
  wire         ce_wire;
  wire   [31:0] dout_wire;

  assign  din_wire = din;
  assign rstn_wire = rstn;
  assign  clk_wire = clk;
  assign   ce_wire = ce;
  assign      dout = dout_wire;


  fir_top dac_test_black_box1( .din(din_wire),
                               .rstn(rstn_wire),
                               .clk(clk_wire),
                               .ce(ce_wire),
                               .dout(dout_wire) );


endmodule  // dac_test_black_box1_wrapper

⌨️ 快捷键说明

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