컴구 과제

학교 2010. 10. 27. 16:48

module mux(s1,s0,i0,i1,i2,i3,y);
   input s1,s0,i0,i1,i2,i3;
   output y;
 wire w1,w2,w3,w4,w5,w6;
 wire nw1,nw2;

 not (nw1,s1);
 not (nw2,s0);

 and (w1,i0,w1,nw2);
 and (w2,i1,nw1,s0);
 and (w3,i2,s1,nw2);
 and (w4,i3,s1,s0);

 or(y,w1,w2,w3,w4)

endmodule

마저해야하는데....


 

'학교' 카테고리의 다른 글

프로젝트 매인  (0) 2010.12.07
웹프로그래밍 프로젝트(PPT)  (0) 2010.11.17
이산수학  (0) 2010.11.09
시프 레폿  (0) 2010.11.08
강의 사이트  (3) 2010.10.21