5、an_out; //定义存储类型 进行数据存储//output yi_out;//译码输出//reg yi_out;always @(posedge clk or negedge rst)//当clk上升沿 或置零信号下降沿来临执行// begin if(!rst) //当清零为0清零端有效编码输出置零//begin bian_out<=0; end else if (cmi_in==1) begin//数据为1执行,假设此时x为1,将00赋给编码输出// if (x) begin bian_out[0]<=0;
6、 bian_out[1]<=0; x<=~x; //对x取反// end//结束退出// else if (!x) begin//当数据为1,x等于0时输入为1 编码为11// bain_out[0]<=1; bian_out[1]<=1; x<=~x; end end else if(cmi_in==0) begin//当数据为0,将01赋给编码输出// bian_out[0]<=1;