All pastes #291686 Raw Edit

Someone

public text v1 · immutable
#291686 ·published 2006-12-25 16:36 UTC
rendered paste body
always @(posedge clk) Zd <= {Zd[4:0], Z};

wire good_one = Zd == 6'b111111;
wire good_zero = Zd == 6'b000000;
reg last_good;

wire index_pulse = good_one && ! last_good;

always @(posedge clk)
begin
    if(good_one) last_good <= 1;
    else if(good_zero) last_good <= 0;
end