The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => The Orphanage => Topic started by: Magnum on December 10, 2011, 11:24:33 PM

Title: Unicode string
Post by: Magnum on December 10, 2011, 11:24:33 PM
This is a part of Gunner's code that creates a unistring.

I want to make it print out 'B','E', instead of the letters surrrounded by double quotes.

I think this is the section to change.


@@:
    mov     al, byte ptr [esi]
    inc     esi
    cmp     al, 00H
    je      Done     
    mov byte ptr [edi],'"'
    inc edi
    mov     byte ptr [edi], al
    inc     edi
    mov byte ptr [edi],'"'
    inc edi
    mov byte ptr [edi],','
    inc edi
    jmp     @B

Title: Re: Unicode string
Post by: Gunner on December 10, 2011, 11:43:22 PM
Have you tried changing and see what happens?
You could do 1 of 2 things:
    mov byte ptr [edi], 27H
or

    mov byte ptr [edi], "'"
Title: Re: Unicode string
Post by: Magnum on December 10, 2011, 11:58:42 PM
I tried the second one already, will try the first.