Write a procedure named Read10 that reads exactly ten characters from standard input into an array of BYTE named myString. Use the LOOP instruction with indirect addressing, and call the ReadChar procedure from the book's link library. (ReadChar returns its value in AL.) Beginning of your code: Read10 PROC mov ecx,SIZEOF myString mov esi,OFFSET myString

Q&A Education