1. 首页
  2. 行业
  3. 电信
  4. 8-3优先编码器

8-3优先编码器

上传者: 2019-02-25 13:23:04上传 TXT文件 588B 热度 27次
8-3 优先编码器 module encoder8_3(none_on,outcode,a,b,c,d,e,f,g,h); output none_on; output[2:0] outcode; input a,b,c,d,e,f,g,h; reg[3:0] outtemp; assign {none_on,outcode}=outtemp; always @(a or b or c or d or e or f or g or h) begin if(h) outtemp=4'b0111; else if(g) outtemp=4'b0110;
用户评论