98 Posted Topics
Re: Well, after the MAIN: label you can do something like...say, read a sector: mov DH, 0 ; set the head mov CH, 0 ; set the track mov CL, 1 ; set the sector lea BX, buffer ;must define 'buffer' first call ReadSector Then you will want to check the … ![]() | |
Re: It is certainly no trouble at all to do Internet-interface programming in ASM. Take a look at the source code for Quetannon at [url]http://flatassembler.net/examples.php[/url] for an example of using the WinSock API at low-level. I believe that bandwidth latency is going to be the biggest factor to determine who gets … | |
Re: {guess there is nothing exciting going on in here so we are responding to old posts :D } A few comments: First, HLA isn't available for DOS programming. Its for Windows and Linux. Download the Windows or Linux version of 'Art of Assembly'. Next, don't get stuck on the hardware … | |
Re: Some IDEs for assembly: RadAsm (for masm/tasm/fasm/nasm/goasm/hla) [url]http://radasm.visualassembler.com/[/url] WinAsm Studio (for masm/fasm) [url]http://www.winasm.net/[/url] AsmEdit (for masm) [url]http://asmedit.massmind.org/[/url] HIDE (for hla) [url]http://www.geocities.com/kahlinor/HIDE.html[/url] Some ASM tutorials are listed here: [url]http://www.faqs.org/faqs/assembly-language/x86/general/part2/section-9.html[/url] | |
Wow! I just received a personal letter from Steven King, my favorite horror author! Ah, crap! Its just a forwarded e-mail from a stranger. No offense intended dude, but I consider such forwarded e-mail to be spam. I mean, when you fall for these e-mail forwarding gimmicks you are not … | |
Re: [QUOTE=kalel21]hi all. i am currently thinking for learning assembler and compiler language. i just wanted to know how long it will take to learn this language and how difficult is it?[/QUOTE] There are several ASM tutorials [[URL=http://k2pts.home.comcast.net/gbaguy/x86asm.htm]x86 ASM Tutorial using A86 for DOS[/URL] ] and books on the Web that … | |
Re: [QUOTE=nishil]hi, I was wondering if any one knew where i could find the instructions for tasm 2.8.....i am trying to compare A TO FF(100H), if greater than FF go to loopA.........I would really appereciate, if any one knows the above instruction...please help me out. thanks[/QUOTE] Download the 3 volumes of … | |
Re: [QUOTE=mei]i m doing a program using masm 611 compiler recently but am doubt of how to use it.my program is a simple program called simple calculator,it contains functions of +,-,*,/, and modulus.user only need to input 2 numbers and the function that he/she would like to perform.but i dunno bout … |