?? ms_res_acs2_0.v
字號:
//Actually the node is a CSA and not an ACS.`include "defs.h"module MS_res_ACS2_0(compare, traceback_path0, traceback_path1, in_path0, in_path1, bit_line);input compare;input in_path0, in_path1;output traceback_path0, traceback_path1;output bit_line;//tracebackwire in_path = in_path0 | in_path1;wire traceback_path0 = in_path & (compare == 1);wire traceback_path1 = in_path & (compare == 0); //wire bit_line = in_path0 ? 0 : (in_path1 ? 1 : 1'bz);wire bit_line = in_path ? (in_path0 ? 1 : 0) : 1'bz;endmodule
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -