?? 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 + -