📄 a86_adsu16_generic.v
字号:
// http://gforge.openchip.org/projects/a86
//
// ADD/SUB with carry in/out and Overflow
// Generic vendor neutral implementation
//
`ifdef a86_vendor_generic
module a86_ADSU16_GENERIC(A, ADD, B, CI, CO, OFL, S);
input [15:0] A;
input ADD;
input [15:0] B;
input CI;
output CO;
output OFL;
output [15:0] S;
endmodule
`endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -