News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Binary to Decimal problem

Started by daniek91, February 24, 2012, 11:10:20 AM

Previous topic - Next topic

dedndave

it appears that they both append Carriage Return and Line Feed - no Null terminator
oh yah, i forgot - you have to terminate it yourself   :P

dedndave

thanks, baltoro   :bg

Laughlin is more fun than Vegas - lol
what we need is an "Annual Masm32 Get-Together" in Laughlin NV
all expenses paid by Hutch, of course - then we can nominate him for the award   :bdg
(included are free "Masm32: Assembly Programmers Do It Faster" T-Shirts)
he probably already deserves the award

jj2007

Quote from: dedndave on February 24, 2012, 06:15:22 PM
it appears that they both append Carriage Return and Line Feed - no Null terminator
oh yah, i forgot - you have to terminate it yourself   :P

Here is one to play. For friends of Olly, I have assembled it with symbols, and it will stop right before the ReadFile call with an int 3 :bg

include \masm32\MasmBasic\MasmBasic.inc   ; download
   Init
   mov f2sOlly, 111   ; a hack
   Let esi=Input$("What's your name again? ", "Dave")
   Inkey "My name is ", esi
   Exit
end start