comparator.v

来自「design compile synthesis user guide」· Verilog 代码 · 共 7 行

V
7
字号
module Comparator (cp_out, ain, bin);/* Comparator for 2 integer values */output cp_out;input [15:0] ain, bin;   assign cp_out = ain < bin;endmodule

⌨️ 快捷键说明

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