reg[6:0] Count;
reg En_Count;
always @(posedge sys_clk or negedge sys_rstn)
begin
if(!sys_rstn)
begin
Count <= 7'b0;
end
else if(Count==7'd25)
Count <= 7'd0;
else if(En_Count)
Count <= Count+1'b1;
else
Count <=7'd0;
end
reg [5:0] i;
reg AD_Cs_r;
reg AD_Clk_r;
reg [7:0] Data_Out_r;
always@(posedge sys_clk or negedge sys_rstn)
if(!sys_rstn)
begin
i<=6'd0;
AD_Cs_r<=1'b1;
AD_Clk_r<=1'b0;
Data_Out_r<=8'd0;
En_Count<=1'b0;
end
else
case(i)
0,1,2,3:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;AD_Cs_r<=1'b0;end
4,6,8,10,12,14,16,18:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;Data_Out_r<={Data_Out_r[6:0],AD_In};AD_Clk_r<=1'b1;end
5,7,9,11,13,15,17,19:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;AD_Clk_r<=1'b0;end
20:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;AD_Cs_r<=1'b1;end
default:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;Data_Out<=Data_Out_r;end
endcase
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;Data_Out_r<={Data_Out_r[6:0],AD_In};AD_Clk_r<=1'b1;end
这二者间可能有些问题。
请参考下例子的代码风格
谢谢kdy,找到问题了:
4,6,8,10,12,14,16,18:
if(Count==7'd25) begin En_Count<=1'b0;i<=i+1'b1;end
else begin En_Count<=1'b1;Data_Out_r<={Data_Out_r[6:0],AD_In};AD_Clk_r<=1'b1;end
这个地方出问题了,Data_Out_r<={Data_Out_r[6:0],AD_In};这条语句应该只执行一边就可以了,可是我的写法在等待期间一直在执行,所以造成了错误,我整理下,去咱们分区发个帖。