Question
1. You will need qtSPIM installed and configured correctly in order to write these programs. Only hand in SOURCE CODE.
2 You will need MS Visual Studio installed and configured correctly in order to write these programs. Only hand in SOURCE CODE.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
.586.MODEL FLAT, C
.STACK 1024
includelib MSVCRT ; for putchar function
extern exit:near
extern putchar:near
.DATA
myname db 41h, 4Ch, 41h, 44h, 45h, 20h, 56h, 49h, 43h, 54h, 4Fh, 52h, 00h
; A L A D E V I C T O R
.CODE
; public main
main PROC
mov ESI,0 ; set array index to 0...