Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


First simple program

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Tue Jun 19, 2007 11:30 am    Post subject: First simple program Reply with quote

Code:
include \masm32\include\masm32rt.inc

.data

    text1     db "Enter 2 numbers to add(up to 4 digits each):", 00
    text2     db "The sum is ", 00
    Number1   dd 0,0,0
    Number2   dd 0,0,0
    Number3   dd 0,0,0
   
    linebreak db 10, 13, 00


.code
start:

  invoke StdOut, offset text1
 
  invoke StdOut, offset linebreak
 
  invoke StdIn , offset Number1, 4
 
  invoke StdOut, offset linebreak
 
  invoke StdIn , offset Number2, 4

      invoke crt_atoi, offset Number1
      push eax
      invoke crt_atoi, offset Number2
      pop edx
      add eax,edx

  invoke crt__itoa, eax,offset Number3, 10
 
  invoke StdOut, offset text2
 
  invoke StdOut, offset Number3

  invoke StdOut, offset linebreak

  invoke StdOut, offset linebreak

  inkey "Enter any key to go on......"
ret   


end start


this is the first thing i made w/o a tut

woot

any ideas how to clean it up or where to go from here

im looking at push, pop, call more but i cant find a good mASM tut

its all t or n

:] gg

_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites