Hello,
my friend found a bug in the latest version of the UASM, byte turns into a double word .. In version 2.47.1 there is no bug...
Code
mainCRTStartup proc
mov byte ptr [rax], 0e8h
ret
align 4
mainCRTStartup endpBin
MOV DWORD PTR DS:[RAX], E8
RET
NOP
in another version it will be like this
Code
mov BYTE PTR [rax],0x2aBin
MOV BYTE PTR DS:[RAX], 2A
I think both entries should be correct?
mov byte ptr [rax], 0e8h
mov BYTE PTR [rax],0x2a
Is it possible to publish a quick bugfix to compile a new version?
Thank you! ::)