Question: please write the assembly code using the provided template for console 32 thanks. Programming Exercises 6.3 For each of these exercises follow the cdecl protocol

please write the assembly code using the provided template for console 32

thanks.
Programming Exercises 6.3 For each of these exercises follow the cdecl protocol for the specified procedure and write a short console32 or windows3 test-driver program to test the assembly language procedure. 1. Suppose that a procedure is described in C/C++ by void toUpper(char str[), that is, its name is toUpper, and it has a single parameter that is the address of an array of characters. Assuming that the character string is null-terminated, implement to Upper so that it changes each lowercase letter in the string to its uppercase equivalent, leaving all other characters unchanged. 1.asm X .586 .MODEL FLAT 3 4 5 .STACK 4096 ; reserve 4096-byte stack 6 7 .DATA ; reserve storage for data 8. 9 10 11 .CODE main ; start of main program C PROC main 12 13 14 15 16 17 ENDP END ; end of source code No issues found
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
