Problem 4 : String Operations
Using appropriate 80x86 string commands and the contents of
StrOld
, create
StrNew
that contains the following message:
This Is The Greatest Class !!!!!!
You may
not
declare any new variables. You code should be as short and efficient as possible.
StrOld db 'ECE291 Is The Greatest Class In This Universe.','$' StrNew db 50 dup (?) CreateMessage PROC NEAR CreateMessage ENDP
(25 pts)