The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: moky on May 15, 2012, 07:28:20 PM

Title: How to add numbers in a loop
Post by: moky on May 15, 2012, 07:28:20 PM
How can i add the 3 numbers in a loop?

.386
.MODEL FLAT

ExitProcess PROTO NEAR32 stdcall, dwExitCode:DWORD
Include io.h

.STACK  4096            ; reserve 4096-byte stack

.DATA                   ; reserve storage for data


Num1    DWORD   600,763,521

sum1      byte   15 dup(?),13,10,0
result1      DWORD   ?


  .CODE                           ; start of main program code
  _start:
   


dtoa   sum1, result1
   output   sum1





    INVOKE  ExitProcess, 0  ; exit with return code 0

PUBLIC _start                   ; make entry point public

  END                             ; end of source code
Title: Re: How to add numbers in a loop
Post by: qWord on May 15, 2012, 07:56:35 PM
You should read a turtorial (http://www.madwizard.org/programming/tutorials/)! Also take a look in the tutorial and help folder of the MASM32 (http://www.masm32.com/)-installation.
Title: Re: How to add numbers in a loop
Post by: dedndave on May 15, 2012, 10:38:11 PM
and use the forum search tool   :P

http://www.masm32.com/board/index.php?topic=18853.msg159759#msg159759
Title: Re: How to add numbers in a loop
Post by: hutch-- on May 16, 2012, 04:57:21 AM
AND post in the Campus, I get tired of moving the postings.  :bg
Title: Re: How to add numbers in a loop
Post by: dedndave on May 16, 2012, 02:25:59 PM
lol
and use code tags   :U
Title: Re: How to add numbers in a loop
Post by: P1 on May 16, 2012, 10:11:40 PM
Quote from: hutch-- on May 16, 2012, 04:57:21 AM
AND post in the Campus, I get tired of moving the postings.  :bg
Maybe we should give in and create the Homework Forum.

Regards,  P1