Write a MIPS assembly language program to generate pseudo-random numbers. They are not true random numbers because the algorithm always generates the same sequence when started with the same initial “seed” value.
Write a 32 bit pseudo-random number generator function, using a 32 bit LFSR (Linear Feedback Shift Register) – see:
https://en.wikipedia.org/wiki/Linear-feedback_shift_register
Animated graphic illustrating a 4 bit LFSR using taps 3 and 4: https://upload.wikimedia.org/wikipedia/commons/7/7f/LFSR-F4.GIF
Animated GIF of 4-bit LFSR
The post Creating Program Using MIPS Language Using MARS. first appeared on COMPLIANT PAPERS.