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

📄 reg24lpm.v

📁 verilog 范例
💻 V
字号:
// MAX+plus II Verilog Example
// LPM Component Instantiation
// Copyright (c) 1997 Altera Corporation

module reg24lpm ( d, clk, q);

   input [23:0]d;
   input clk;
   output [23:0]q;

   lpm_ff reg12a (.q (q[11:0]), .data(d[11:0]), .clock(clk));
       defparam reg12a.lpm_width = 12;

   lpm_ff reg12b (.q (q[23:12]), .data(d[23:12]), .clock(clk));
       defparam reg12b.lpm_width = 12;

endmodule

⌨️ 快捷键说明

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