On Mon, 03 Oct 2011 08:29:40 PDT Bakul Shah <ba...@bitblocks.com> wrote: > In my test library a 'shift' was > (+ (quotient 512-bit-reg 2^32) new-32-bit-value)).
Oops. I meant: (+ (* (quotient 512-bit-reg 2^32) 2^32)) new-32-bit-value) In one clock the top 32 bits shift out and new 32 bits shift in. It has been a while.