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
*/

沒有留言:

張貼留言

2024_09 作業3 以Node-Red 為主

 2024_09 作業3  (以Node-Red 為主  Arduino 可能需要配合修改 ) Arduino 可能需要修改的部分 1)mqtt broker  2) 主題Topic (發行 接收) 3) WIFI ssid , password const char br...