Question: 7. Write a program that prints your on your screen. You can use the template provided. Assemble and generate the output using MASM and

7. Write a program that prints your on your screen. You can use the template provided. Assemble and generate the output using MASM and Visual Studio. Embed your output in your submission. TITLE My first assembly program INCLUDE Irvine 32.inc .DATA Message BYTE "FirstName Lastname", .CODE main PROC exit mov edx, offset message Call WriteString main ENDP END main
Step by Step Solution
There are 3 Steps involved in it
Heres a simple assembly program that prints FirstName Lastname to the screen usi... View full answer
Get step-by-step solutions from verified subject matter experts
