and.v2
来自「將Verilog設計轉成VHDL設計的程式」· V2 代码 · 共 17 行
V2
17 行
entity AND isport(in2, in1 : in bit; out : out bit);end AND;arhitecture VL2VHDL of AND issignal w1:Bit;component NANDport((null) unknown_io_type; (null) unknown_io_type; (null) unknown_io_type);end component;NAND1 : NANDport_map((null) => w1, (null) => in2, (null) => in1);NAND2 : NANDport_map((null) => out, (null) => w1, (null) => w1);beginend VL2VHDL;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?