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

📄 compare.v

📁 it about using veriolog complement some project,thanks!
💻 V
字号:
//******************////copyright 2007, DTK//all right reserved////project name: : test1//filename    : compare//author      : wangyang//data        : 2007/8/2//version     : 1.0////module name : module_compare//abstract     : if(a=b)=1,else0////modification history//---------------------------------//&Log&////*************************module compare(A,B,Equal);input A;input B;output Equal;wire A;wire B;wire Equal;assign Equal=(A==B)?1:0;//==???????=??????endmodule//??/*module compare(A,B,Equal);input A;input B;output Equal;wire A;wire B;reg Equal;always@(A or B)if(A==B)Equal=1;elseEqual=0;endmodule*/

⌨️ 快捷键说明

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