I have char *str1 and char *str2, passed thru %rdi and %rsi, respectively.
I'm looping through each byte, but cmp will not let me perform memory to memory comparison. cmp (%rdi), (%rsi)
There is also cmpsb, which I am struggling to understand how to actually use it. Are there any other ways to compare equality of the contents of a pointer to another content of a pointer?