Question: ASSEMBLY LANGUAGE FOR X86 (MASM) TITLE MASM Template (test.asm) INCLUDE Irvine32.inc .data enternumMsg BYTE Enter a number ,0dh,0ah,0 numdoubleMsg BYTE Double your number , 0dh,0ah,0
ASSEMBLY LANGUAGE FOR X86 (MASM)
TITLE MASM Template (test.asm) INCLUDE Irvine32.inc .data enternumMsg BYTE "Enter a number ",0dh,0ah,0 numdoubleMsg BYTE "Double your number ", 0dh,0ah,0 sum DWORD 0 .code mainhh PROC mov edx, OFFSET enternumMsg call WriteString call ReadInt add eax,eax mov edx, OFFSET numdoubleMsg call WriteString call WriteInt
call WaitMsg
exit mainhh ENDP END mainhh
Modify the starter file so that you are able to enter three different values from the keyboard A, B , C and D then show the result to the following equation: A = ( A + B ) - ( C + D )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
