Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using PLP Tool 5.2 My code so far. Not really sure how to get the switch to light up the correct LEDs as shown in
Using PLP Tool 5.2
My code so far. Not really sure how to get the switch to light up the correct LEDs as shown in the table. So far the switch just lights up the corresponding LED.
CSE 230 Project 2: LED Pattern Generator Learning Objectives: Use PLP branch instructions Read from a memory mapped I/O device The Task: 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: SwitchHexadecia Binary Switch Number Switch Value LED Pattern Value 0x00000001 0b00000001 Turn all 8 LEDs on and then off 0x00000002 0b00000010 Turn all even numbered LEDs on and then off Turn all odd numbered LEDs on and then off 2 0x80000004 | 0b00000100 ex0000e08 eb00010 Cycle through all 8 LEDs in order with only one LED on at a time (a marquee) Other Other All LEDs off CSE 230 Project 2: LED Pattern Generator Learning Objectives: Use PLP branch instructions Read from a memory mapped I/O device The Task: 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: SwitchHexadecia Binary Switch Number Switch Value LED Pattern Value 0x00000001 0b00000001 Turn all 8 LEDs on and then off 0x00000002 0b00000010 Turn all even numbered LEDs on and then off Turn all odd numbered LEDs on and then off 2 0x80000004 | 0b00000100 ex0000e08 eb00010 Cycle through all 8 LEDs in order with only one LED on at a time (a marquee) Other Other All LEDs offStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started