2014年4月29日 星期二

範例 4x1 MUX 套用到DE2-70 實驗版上


範例 4X1 Mux
套用到DE2-70 實驗版上


¡ module mux2_de2( SW,LEDR );
¡   input [17:0] SW;
¡   output [17:0] LEDR;
¡   mux2(SW[17:16],SW[3:0],LEDR[0]);
¡ endmodule

//======================
¡
¡
¡module mux2( select, d, q );
¡  input[1:0] select;
¡  input[3:0] d;
¡  output q;
¡  reg q;
¡  wire[1:0] select;
¡  wire[3:0] d;
¡  always @(d or select)
¡   q = d[select];
¡endmodule

2014年4月28日 星期一

2014年4月5日 星期六

Chapter #7: Differential and Multistage Amplifiers 差動及多級放大 (2014_04_07)


2014_04_07
Chapter #7: Differential and Multistage Amplifiers
差動及多級放大
連結點 (4shared 需註冊)
http://www.4shared.com/web/preview/doc/-RcRkyx8ce?

2024年4月24日 星期三 Node-Red Dashboard UI Template + AngularJS 參考 AngularJS教學 --2

 2024年4月24日 星期三 Node-Red Dashboard UI Template + AngularJS 參考 AngularJS教學 --2 AngularJS 實例 <!DOCTYPE html> <html> <head> &...