Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Task 3 Assembly programmingWrite an assembly language program for the WASP processor using the Sting assembler.Your assembly program should allow the user to encrypt a
Task Assembly programmingWrite an assembly language program for the WASP processor using the Sting assembler.Your assembly program should allow the user to encrypt a message using a Caesar Cipher.A Caesar Cipher is a simple and wellknown way to encrypt text. To use it you first pick a numbercalled the shift For example, Then every letter in the message has that number added to it tomove it forward in the alphabet. For example, in this case, A becomes DB becomes E andso on For numbers at the end of the alphabet, the letters start again from the beginning. In thisexample the letter X would become A and the letter Y would become BUsing a shift of the text YELLOW SUBMARINE becomes BHOORZ VXEPDULQH.Your program will work as follows: Allow the user to type in a single digit for the shift. The shift will be between and Yourprogram will store the number in a variable. You do not need to handle shifts larger than The user will type text into the console. This will be converted to the encrypted text anddisplayed on the screen The program will work for both upper and lowercase characters. The program will notchange spaces, digits, or other symbols The program will halt once it has displayed a line of text. Check for the new line character.For example, if the user enters a shift of then enters Good morning, Mr Turing! your programwill display:Nvvk tvyupun, Ty Abypun write the code please with instruction on how to run it its based on sting assembler using wasp here is a simple code to explain the syntax : MOV BXxMOV AXxAADD BXAXMOV AXxAADD BXAXMOV AXxAADD BXAXMOV AXxAADD BXAXDIV BXxMOV xABXHALT
Step 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