I have signed byte. How can I convert it to signed integer (32 bit).
I use x86 assembler.
Now its look like:
mov ebx, 0
mov bl, [edi]
test bl, 0x80
jz l3
or ebx, 0xFFFFFF00
l3:
But I think its not very effective.