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

📄 xmsmmc_minimal.v

📁 MMC卡的VHDL源代码实现
💻 V
字号:
//// BootX-XMSMMC IP Core demonstration// Minimal configuration - to show the absolute minimal resource useage// This configuration uses 20 Macrocells in Xilinx XCR3032// // Copyright 2004-2005 Openchip// http://www.openchip.org//`include "mmc_boot_defines.v"module xmsmmc_minimal( cclk, done, init, mmc_cmd, mmc_clk );// Connect to FPGA CCLK, INIT, DONE// Init and Done need an external PULLUP Resistor!input  cclk;input  init; input  done; // MMC Card DAT goes to FPGA DIN// MMC Card CS (pin 1) tie high or leave floating// Connect to MMC Card CMD and CLKinout  mmc_cmd;output mmc_clk;// Instantiate XMSMMC IPxmsmmc_core boot_i (    .cclk    (   cclk    ),     .done    (   done    ),     .init    (   init    ),     .mmc_cmd (   mmc_cmd ),     .mmc_clk (   mmc_clk ),     .dis     (   1'b0    ),  // Tristate control not used    .error   (           )   // Error output not used    );endmodule

⌨️ 快捷键说明

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