📄 res_acs.v
字号:
//Actually the node is a CSA and not an ACS.`include "defs.h"module res_ACS(compare, traceback_path0, traceback_path1, in_path0, in_path1);input compare;input in_path0, in_path1;output traceback_path0, traceback_path1;//tracebackwire in_path = in_path0 | in_path1;wire traceback_path0 = in_path & (compare == 1);wire traceback_path1 = in_path & (compare == 0); endmodule
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -