Currently my code is this.
resultLbl BYTE "Coin Information", 0
sum BYTE "Number of Coins: ", 0
NumberOfDollars BYTE "Dollars: ", 0
NumberOfCents BYTE "Cents: ", 0
dtoa sum, ebx ; convert to ASCII characters
dtoa NumberOfDollars, ecx ; convert to ASCII characters
dtoa NumberOfCents, edx ; convert to ASCII characters
output resultLbl, sum ; output label and sum
I'm having an issue because the way I want it to output is a single window, but 3 different lines. I don't know how to output on three seperate lines. Here is how I would like my output to look.
Coin Information
Number of Coins: 50
Number of Dollars: 5
Number of Cents: 30
Can anyone help? This is really bugging me
dtoaandoutputmacros? If they are, we need to see them too, since we have no idea what this code is doing. If they aren't, then this isn't x86. – ughoavgfhw Oct 14 '11 at 23:00