Question: ` ` ` ; If myChar > ' Z ' , branch to notUpper ; Convert to lowercase ( add 3 2 to ASCII value

```
; If myChar >' Z', branch to notUpper
; Convert to lowercase (add 32 to ASCII value)
; Store the result back to myChar
; Output the character as a string from memory
; End program
```
Object Code - untitled.pepo
```
004116001C
0349000300
```
Assembler Listing - untitled.pepl
cand Comment
; Reserve 1 byte for character input
are, ; Input the character from the console
har, d ; Load myChar into accumulator B
i ; Compare with 'A'(ASCII 65)
Jpper ; If myChar 'A', branch to notupper
i ; Compare with 'Z'(ASCII 90)
Jpper ; If myChar >'Z', branch to notupper
i : Convert to lowercase (add 32 to ASCII value)
` ` ` ; If myChar > ' Z ' , branch to notUpper ;

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 Programming Questions!