CLICK HERE FOR THOUSANDS OF FREE BLOGGER TEMPLATES »

Saturday, October 18, 2008






Friday, October 17, 2008

verilog learnt lessons

simple divider in the digital circuit can be done by doing right shift:

a = 8'b10001010; 8'h86;
a = a>>1;
a = 8'b01000101; 8'h45;

divide is modulo 2;