$25
Complete the task described below by using VizMachine
You should write a program which visualize your first name (only first name, not middle name or surname) on the screen with capital letters. After this visualization, the program should visualize it again with small letters. To do this, you need to use ASCII table. You are not allowed to make static assingments to registers or the main memory. Your program should print your name twice by using a single code segment. I.e. your program should:
• have a code segment which prints your name with capital letters
• turn back to the beginning of this code segment
• and write your name again with small letters
• and finally terminate
You are asked to figure out a way to create a loop by using JUMP instruction which works only once!