arithmetic_unit.v
来自「Verilog HDL 高级数字设计源码 _chapter5」· Verilog 代码 · 共 23 行
V
23 行
module arithmetic_unit (result_1, result_2, operand_1, operand_2,);
output [4: 0] result_1;
output [3: 0] result_2;
input [3: 0] operand_1, operand_2;
assign result_1 = sum_of_operands (operand_1, operand_2);
assign result_2 = largest_operand (operand_1, operand_2);
function [4: 0] sum_of_operands;
input [3: 0] operand_1, operand_2;
sum_of_operands = operand_1 + operand_2;
endfunction
function [3: 0] largest_operand;
input [3: 0] operand_1, operand_2;
largest_operand = (operand_1 >= operand_2) ? operand_1 : operand_2;
endfunction
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?