Search the web
Sign In
New User? Sign Up
assembly · Assembly Language Programming
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 769 - 798 of 1803   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
769
Hi, If you're looking for example source codes for Win32 NASM, you can find them at this group: http://groups.yahoo.com/group/win32-nasm-users/ Description: A...
yeohhs
Offline Send Email
Nov 12, 2003
5:07 am
770
Hi, If you're learning Win32 assembly, you might want to check out this site. It has example programs and source codes. http://www.geocities.com/yeohhs/ ...
yeohhs
Offline Send Email
Nov 12, 2003
5:09 am
771
Hi, I'm taking a course about Computer Organization and Assembly Programming using Microsoft MASM .. and I would like to find topics about File I/O and ...
EPSiLON
epsilon@...
Send Email
Nov 12, 2003
7:58 pm
772
Hi, Here are some links you might want to check out. http://www.movsd.com/masm.htm http://webster.cs.ucr.edu/Page_TechDocs/MASMDoc/ ...
yeohhs
Offline Send Email
Nov 13, 2003
1:31 am
773
Thanks a lot ! ... From: "yeohhs" <yeoh@...> To: <assembly@yahoogroups.com> Sent: Thursday, November 13, 2003 4:30 AM Subject: [assembly] Re: Win32...
EPSiLON
epsilon@...
Send Email
Nov 13, 2003
1:42 pm
774
HELLO. PLASE SEND TO ME THE SOURCE OF INT10H . MY EMAIL :ESMAIL_TAMADONIFAR@... TANKS....
esmail_tamadonifar
esmail_tamad...
Offline Send Email
Nov 15, 2003
11:07 am
775
Hi, I started assembly language about four weeks ago. I've gotten to displaying a message on the screen via interrupt 21h, 9. I have also gotten to using...
frogs98toads
Offline Send Email
Nov 17, 2003
1:41 pm
776
If you're using MASM .. MOV AH,0AH or MOV AH,10 or MOV AH,1010b notice the leading zero in 0AH because if you put it AH or A .. it will confuse the assembler. ...
EPSiLON
epsilon@...
Send Email
Nov 17, 2003
7:04 pm
777
Hi, I tried using Mov ah, 01010b, and it worked to input. Not to sound like too much of a novice, but where does the inputed string go? does it go to dx? cx?...
frogs98toads
Offline Send Email
Nov 18, 2003
12:10 am
778
Our CMM Level 5 client is on major Recruitment Drive & looking forward 250 + IT professionals to join before November / December 03, for their Indian &...
shibani_chitre12
shibani_chit...
Offline Send Email
Nov 18, 2003
1:53 am
779
I started Assembly a few months ago using MASM 6.15. My problem with this project ( and i don't understand how to do it) is converting Postfix notation to...
thenetwrqnatse
Offline Send Email
Nov 18, 2003
5:10 am
780
I have a small idea about this (not code) Suppose you have this expression: 613+- (Postfix) 6-(1+3) (Infix) PUSH all the digits in the stack and once you see...
EPSiLON
epsilon@...
Send Email
Nov 18, 2003
7:00 pm
781
Hello, This input text is saved at the memory location referenced by DX ... how ? If you want to save your text in some memory location in the data segment DS...
EPSiLON
epsilon@...
Send Email
Nov 18, 2003
7:00 pm
782
thanks for your idea! ... ===== Remember the old saying: "YOUR PAIN IS MY PLEASURE!!" __________________________________ Do you Yahoo!? Protect your identity...
Yahia Hegazy
thenetwrqnatse
Offline Send Email
Nov 19, 2003
2:45 am
783
Does anyone have an assembly program which prompts the user for two numbers then performs multiplication on these two numbers and displays the result. You can...
taboc1
Offline Send Email
Nov 19, 2003
4:38 pm
784
X*2 = SHL X,1 X*3 = SHL X,2 - X X*4 = SHL X,2 X*5 = SHL X,2 + X X*6 = SHL X,2 + X + X OR SHL X,3 - X - X and so on ... but if your program is only multiplying...
EPSiLON
epsilon@...
Send Email
Nov 19, 2003
8:32 pm
785
I have a code that does mulitplication addition and GCD.... DO NOT COPY IT ALL!!!! ;;Author: Yahia Hegazy ;;Date Due: Monday, October 13, 2003 at 11:59 pm ...
Yahia Hegazy
thenetwrqnatse
Offline Send Email
Nov 19, 2003
9:20 pm
786
Will these work in a unix shell also? ... COPY IT ALL!!!! ... mulitplication, addition, and also finding the greatest ... MULT and DIV, the multiplication and...
taboc1
Offline Send Email
Nov 19, 2003
9:34 pm
787
that part I am unsure of... the worst that can happen is it won't work in unix.... ... === message truncated === ===== Remember the old saying: "YOUR PAIN IS...
Yahia Hegazy
thenetwrqnatse
Offline Send Email
Nov 20, 2003
12:12 am
788
The instruction in writing an infix code is below Please write an 80X86 Assembly Language program that reads a mathematical expression in the postfix (reverse...
thenetwrqnatse
Offline Send Email
Nov 20, 2003
12:19 am
789
See the attached PDF! Adapted from : The Art of Assembly...
EPSiLON
epsilon@...
Send Email
Nov 20, 2003
11:39 am
790
hey, the attachment you sent me does not open at all can you send it to me again? ... ===== Remember the old saying: "YOUR PAIN IS MY PLEASURE!!" ...
Yahia Hegazy
thenetwrqnatse
Offline Send Email
Nov 21, 2003
4:05 am
791
I am a software test mgr trying to complete an A.S. degree. I am trying to write a 16-bit intel based assy program and am getting a linker error - invalid...
Dale Parker
dilbertp1
Offline Send Email
Nov 21, 2003
3:32 pm
792
Now it's in a ZIP file Mr. Yahia You should have Adobe Acrobat 6.0 or later to be able to read the file. Get it FREE from : http://acrobat.adobe.com/ Regards, ...
EPSiLON
epsilon@...
Send Email
Nov 21, 2003
8:07 pm
793
Well, if you're getting ONLY Linker Error Check that your filename is the the 8.3 format. i.e the filename should be at most 8 character and the file extension...
EPSiLON
epsilon@...
Send Email
Nov 22, 2003
4:50 am
794
Does anyone have the code to implement a tic tac toe game in assembly? Use the characters _ and | to display the game table. The table must be updated after...
taboc1
Offline Send Email
Nov 24, 2003
3:15 pm
795
Hi Everybody, We, iSmart International Ltd. – Mumbai have following urgent requirement for our Smart Card / Telecom Project. Designation :...
Vijay Sarkale
vijaysarkale
Offline Send Email
Nov 28, 2003
5:42 am
796
SILPA INFORMATICS #502, AMEER ESTATE, S.R.NAGAR, HYDERABAD-38 PHONE: 040-55629256/7 Dear Friends, We would like to present you a window to land in the LAND OF...
silpa usa
silpausa1
Offline Send Email
Dec 2, 2003
5:01 am
797
Hi I am looking for a simple calculator that does +,-,* /. Mine is not working. I'll paste the code of asm file. See if someone can correct me by running it....
unokhaladla
Offline Send Email
Dec 2, 2003
7:24 pm
798
Hi guys, Iam taking a Sparc assembly class which has proved to be a nightmare especially bcoz there aren't many sources of help and books. I have the...
Kenny
blueblue00
Offline Send Email
Dec 3, 2003
5:03 pm
Messages 769 - 798 of 1803   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help