2012年10月11日 星期四

P5-13 Half Adder for DE2-70 Experiment Board


//1bit adder Half Adder

//1bit adder Half Adder



module Hadder (SW, LEDR, LEDG);
input [17:0] SW; // toggle switches
output [17:0] LEDR; // red     
  output [7:0] LEDG; // green LEDs
  
//set original program input , output 
wire a,b;
wire s,cout;

   
    //mapping to hardware 
    assign LEDR = SW;
    
    
assign a = SW[0];
assign b = SW[1];

//program body

assign s=a^b;
assign cout=a&b;

//setting output
assign LEDG[0]=s;
assign LEDG[1]=cout;

endmodule


/* original  program
module half_adder(a,b,s,cout);
input a,b;
output s,cout;
assign s=a^b;
assign cout=a&b;
endmodule
*/

沒有留言:

張貼留言

Node-Red --> MQTT --> Fuxa

Node-Red --> MQTT --> Fuxa      FUXA(一個開源的 Web HMI / SCADA 自動化監控軟體)的專案設定檔 。 這份設定檔完整定義了 HMI 監控畫面的 後端通訊(MQTT 連線、點位標籤) 與 前端網頁圖形介面(SVG 畫布...