Message-ID: <373B48C1.1660@bellsouth.net> From: seth Organization: seth X-Mailer: Mozilla 3.0 (Win95; U) MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: asm code Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 18 Date: Thu, 13 May 1999 17:48:49 -0400 NNTP-Posting-Host: 209.214.79.81 X-Trace: news3.atl 926629122 209.214.79.81 (Thu, 13 May 1999 16:58:42 EDT) NNTP-Posting-Date: Thu, 13 May 1999 16:58:42 EDT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hello, I just started trying to learn Assembler. I have a few questions.... Is adding/subtracting ect. necessarily alot faster in Asm than in C? Such as: mov ax, 5 mov bx, 5 add ax, bx Would that be faster than int one, two; one+=two; Also, could someone give me some example code on how to add four numbers and find the average with Asm? thanks