and2.v
来自「FPGA-CPLD_DesignTool,事例程序3-4」· Verilog 代码 · 共 28 行
V
28 行
// Copyright Model Technology, a Mentor Graphics// Corporation company 2003, - All rights reserved.`timescale 1 ns / 1 ns///////////////////////////////////////////////////// and2 cell:// Without the `celldefine compiler directive,// all internal primitives will be seen in the// dataflow window.///////////////////////////////////////////////////module v_and2 (input a, b, output y); buf (al, a); buf (bl, b); and (yl, al, bl); buf (y, yl); specify specparam t_rise = 1:1:1, t_fall = 1:1:1; (a => y) = (t_rise, t_fall); (b => y) = (t_rise, t_fall); endspecifyendmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?