3-1 Verilog 4位行為級描述的加法器
阿新 • • 發佈:2019-02-16
使用工具:Xilinx ISE 14.7
這個沒什麼好說的就是直接使用運算子“+”將輸入相加所得的結果分配給輸出,程式碼如下:
module Design_code(
input [3:0] num_1,
input [3:0] num_2,
output [3:0] out_num,
output CF
);
assign {CF,out_num} = num_1+ num_2;
endmodule
在這裡主要用到的是Verilog的拼接運算子——{訊號1,訊號2}, 其中訊號1是高位置,訊號2是低位值
測試程式碼:
模擬結果:initial begin // Initialize Inputs num_1 = 0; num_2 = 0; #50; num_1 = 0; num_2 = 1; #50; num_1 = 0; num_2 = 3; #50; num_1 = 0; num_2 = 7; #50; num_1 = 0; num_2 = 15; #50; num_1 = 1; num_2 = 15; #50; num_1 = 3; num_2 = 15; #50; num_1 = 7; num_2 = 15; #50; num_1 = 15; num_2 = 15; #50; // Add stimulus here end
為了方便測試,在這裡可以用ISE模擬器提供的資料進位制轉換,將原來的二進位制轉化成比較直觀的十六進位制,操作如下:
結果如下: