From: Niklas_Pson AT nosmam DOT hotmail DOT com (Niklas Pettersson) Newsgroups: comp.os.msdos.djgpp Subject: Re: What is faster as memcpy??? Date: 26 Sep 2000 06:55:03 GMT Organization: Lund Institute of Technology, Sweden Lines: 19 Message-ID: <8FBB57052NiklasPsonnospamhotm@130.235.20.4> References: <8pqfb2$hmk$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> <8q53ue$l8g$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> <0gTx5.9784$Sp1 DOT 251339 AT zwoll1 DOT home DOT nl> NNTP-Posting-Host: npedt97.univ.vxu.se User-Agent: Xnews/03.04.11 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hello! Here is some code you can try. _wait_vr: pushw %dx pushw %ax movw $0x03da, %dx L3: inb %dx, %al testb $8, %al jne L3 L4: inb %dx, %al testb $8, %al je L4 popw %ax popw %dx ret