Re-write any string PROC the book (or you) wrote to use the string instructions. In particular, recall our discussion of Str_compare in lecture in which you could scan ahead for the null terminator, rep that many characters in comparison, if still the same, scan ahead again. If not, you are done. (Hint: You only have to look for the null terminator in one of the two strings -- the terminator in the other string will differ from the corresponding character of the 'first' string.)
As always, document any procedures you create well!
This assignment is Level 1.5 for Str_compare and another Level 0.5 for each other string PROC in which you can use the string instructions.