a86_adsu16_generic.v

来自「使用CPLD仿真8088核,内有源程序和说明」· Verilog 代码 · 共 25 行

V
25
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?