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
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.
and use the forum search tool :P
http://www.masm32.com/board/index.php?topic=18853.msg159759#msg159759
AND post in the Campus, I get tired of moving the postings. :bg
lol
and use code tags :U
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