lfsr-generator

lfsr-generator

瀏覽:587
日期:2024-05-25
Part of the generated code of the Fibonacci LFSR whose length is 4, the tap sequences are (4, 1) and the shift amount is 1 is: unsigned int shift_lfsr(unsigned int v) { enum { length = 4, tap_0 = 4, tap_1 = 1, shift_amount_0 = 1 }; typedef ......看更多