can i use register "ebp" for incrementing and for multiplying?
will this hold true?
mul ebp ; al*ebp = ax (it will take the value in ebp, mutliply with al and set the product to ax
mov ebp, 0
inc ebp ;will ebp now equal 1?
im asking this because i noticed some of the other registers act differently than eax, ebx, ecx, edx, esi, edi
will this hold true?
mul ebp ; al*ebp = ax (it will take the value in ebp, mutliply with al and set the product to ax
mov ebp, 0
inc ebp ;will ebp now equal 1?
im asking this because i noticed some of the other registers act differently than eax, ebx, ecx, edx, esi, edi