every expert keep sending wrong code sadly it needs to be wasmbly there are small issues that keeps comping up i need soemone to kow the exact instructions so i willshare a screen shot of the instructions set Source: Extract Labels Substitute Labels Translate Add Addresses Assemble Output: Instruction SethhhhhTask 3-Assembly programmingWrite an assembly language program for the WASP processor hhhhhhhusing 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 well-known way to encrypt text. To use it, you first pick a number(called the "shift". For example, 3). 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 “D". “B” 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 "B". Using a shift of 3, the text YELLOW SUBMARINE becomes BHOORZ VXEPDULQH.Your program will work as follows:1. Allow the user to type in a single digit for the shift. The shift will be between 0 and 9. Yourprogram will store the number in a variable. You do not need to handle shifts larger than 9.2. The user will type text into the console. This will be converted to the encrypted text anddisplayed on the screen.3. The program will work for both upper - and lower - case characters. The program will notchange spaces, digits, or other symbols.4. 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 7, 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

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter10: Application Development
Section: Chapter Questions
Problem 3RQ
icon
Related questions
Topic Video
Question
STING-AWASP Ass
Load Code
Source:
0
Save Code
Clear
Load Test Code
Format
Convert Numbers
Extract Labels
Substitute Labels
Translate
Add Addresses
Assemble
Load Wex
Output: Instruction Set
02
03
04
05
06
07
08
09
ОА
OB
OC
OD
ОЕ
OF
10
Save Wex
MOV AX, [BX]
MOV AX, [AX]
MOV AX, SP
MOV AX, byte
MOV AX, [byte]
MOV AX, word
MOV AX, [word]
MOV BX, AX
MOV BX, [AX]
MOV BX, [BX]
MOV BX, SP
MOV BX, byte
MOV BX, [byte]
MOV BX, word
MOV BX, [word]
I
WASP
0
Show Instruction Set
x
Transcribed Image Text:STING-AWASP Ass Load Code Source: 0 Save Code Clear Load Test Code Format Convert Numbers Extract Labels Substitute Labels Translate Add Addresses Assemble Load Wex Output: Instruction Set 02 03 04 05 06 07 08 09 ОА OB OC OD ОЕ OF 10 Save Wex MOV AX, [BX] MOV AX, [AX] MOV AX, SP MOV AX, byte MOV AX, [byte] MOV AX, word MOV AX, [word] MOV BX, AX MOV BX, [AX] MOV BX, [BX] MOV BX, SP MOV BX, byte MOV BX, [byte] MOV BX, word MOV BX, [word] I WASP 0 Show Instruction Set x
every expert keep sending wrong code sadly it needs to be wasmbly there are small issues that
keeps comping up i need soemone to kow the exact instructions so i willshare a screen shot of the
instructions set Source: Extract Labels Substitute Labels Translate Add Addresses Assemble
Output: Instruction SethhhhhTask 3 -Assembly programmingWrite an assembly language
program for the WASP processor hhhhhhhusing 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 well-known way to encrypt text. To use it, you first pick a number(called the "shift". For
example, 3). 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 "D". "B" 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 "B". Using a shift of 3, the text
YELLOW SUBMARINE becomes BHOORZ VXEPDULQH.Your program will work as follows:1.
Allow the user to type in a single digit for the shift. The shift will be between 0 and 9.
Yourprogram will store the number in a variable. You do not need to handle shifts larger than 9.2.
The user will type text into the console. This will be converted to the encrypted text anddisplayed
on the screen.3. The program will work for both upper and lower - case characters. The
program will notchange spaces, digits, or other symbols.4. 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
7, 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
Transcribed Image Text:every expert keep sending wrong code sadly it needs to be wasmbly there are small issues that keeps comping up i need soemone to kow the exact instructions so i willshare a screen shot of the instructions set Source: Extract Labels Substitute Labels Translate Add Addresses Assemble Output: Instruction SethhhhhTask 3 -Assembly programmingWrite an assembly language program for the WASP processor hhhhhhhusing 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 well-known way to encrypt text. To use it, you first pick a number(called the "shift". For example, 3). 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 "D". "B" 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 "B". Using a shift of 3, the text YELLOW SUBMARINE becomes BHOORZ VXEPDULQH.Your program will work as follows:1. Allow the user to type in a single digit for the shift. The shift will be between 0 and 9. Yourprogram will store the number in a variable. You do not need to handle shifts larger than 9.2. The user will type text into the console. This will be converted to the encrypted text anddisplayed on the screen.3. The program will work for both upper and lower - case characters. The program will notchange spaces, digits, or other symbols.4. 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 7, 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
Expert Solution
steps

Step by step

Solved in 5 steps with 1 images

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning