Write behavioral Verilog code implementing an 8-bit Pseudorandom binary sequence generator (PRBS). The PRBS should take an 8-bit input and generate an 8-bit output based on the sum (XOR) of subsets of input bits. Here, using bits b0 and b3 of your current 8-bit data, you generate a new b7 for your 8-bit output sequence (see Figure). The b0 bit of the input number is eliminated. Thus, to calculate the output, you will concatenate the calculated b7 bit to the input bits b7-b1 and eliminate the input b0 bit. (10 points)
4
b2 b1