Question: Write a program in PLP assembly that repeatedly reads the value of the switches ( address: 0 xf 0 1 0 0 0 0 0

Write a program in PLP assembly that repeatedly reads the value of the switches (address: 0xf0100000) and
displays a pattern on the LED array based on what switches. Each time the switch value is read, the pattern
should be displayed (regardless of whether the switch value has changed or not since the last time it was read).
The table below indicates the pattern that should be displayed for each possible switch setting:
Switch
Number
Hexadecimal
Switch Value
Binary
Switch Value
Decimal
Switch Value
LED Pattern
00x000000010b000000011 Turn on LEDs 0,1,2, and 3, then set all 8
LEDs to off
10x000000020b000000102 Turn on LEDs 4,5,6 and 7, then set all 8
LEDs to off
20x000000040b000001004 Create a scrolling pattern that moves
from right to left starting with LED 1 and
skipping every other LED. Only one LED
should be on at any given time (i.e., LED
1, then LED 3, then LED 5, then LED 7)
and the pattern should end with all LEDs
off.
Other Other Other Other All LEDs off
Hint: Logical shifts are not required to complete this project, but they can be used to make your program shorter
and more readable than hard coding every value to be written to the LEDs. Shifts can also be useful to generate
the value that you compare with the value of the switches.
 Write a program in PLP assembly that repeatedly reads the value

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!