--------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDM00050Date: 09/11/97 From: PHIL QUINTON Time: 09:12am \/To: JEAN-FRANCOIS GOBIN (Read 1 times) Subj: Graphix mode Windowing. > Hello Phil ... > Just look at the VESA functions ... you will see something > called change video memory window ... Cheers. -=> Phil <=- --- * Origin: Watch the Shadows, Win95 is following.. (2:250/607.96) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDM00051Date: 09/09/97 From: MATHIEU BOUCHARD Time: 01:48am \/To: DANIEL TROY (Read 1 times) Subj: stuff DT> The joy of programming is the discoveries you make yourselves. DT> It is for this reason that I loathe all non assembler lingo. DT> Simply because the programming challenge is not there and YOU aint eally DT> doing the yakka. I don't say: use assembly language all the time. I say write your own compiler. DT> I reserve the right to sound stupid confused and wrong i will not be eld DT> responsible for any damage this publication may cause and i dont mind DT> being held responsible if someone agrees with me on all the points. I don't mind for damage as long as this damage is made to MICROSOFT ! HAIL BILL GATES! we were actually thinking about installing photos of Bill Gates dressed up in Hitler, replacing the Windows 95 intro screen, on all univ computers. If you have an APL interpreter that's 1. using ASCII and 2. capable of considering characters as ASCII values, then type 3+/'BILLGATES' (representing Bill Gates III, the greedy guy at Redmond). A magic number should appear. In assembler: mov si,belzebuth mov bx,3 j0: lodsb cmp al,0 jz >j1 mov ah,0 add bx,ax jmp j0 j1: ; here do whatever to print the thing: ; return to debugger, or call your recursive ; number-displayer belzebuth: DB "BILLGATES",0 matju --- Terminate 4.00/Pro * Origin: The Lost Remains Of SatelliteSoft BBS (1:163/215.42) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDM00052Date: 09/09/97 From: MATHIEU BOUCHARD Time: 01:57am \/To: MAURIZIO BRUNET (Read 1 times) Subj: IRQ6-Int 0Eh MB> Hello all, MB> Excuse me for my BAD english. MB> I wanna know if exist a documentation of "IRQ6" ,this that control the MB> diskette drive. MB> My "dream" is to program the drive directly, without use some interrupt. try downloading the source code of Linux's kernel. the damn thing is 6 megs compressed, 30 megs uncompressed, but it accesses floppies, cdroms, hard disks, serial, parallel, all scsi's, everything, DIRECTLY. And it contains a near-military-quality random number generator, too. You can generate PGP keys from environmental noise using this. Oh, btw, it's written in 32-bit C and it's a little harsh, but you can get used to, I guess. matju --- Terminate 4.00/Pro * Origin: The Lost Remains Of SatelliteSoft BBS (1:163/215.42) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDM00053Date: 09/14/97 From: DAVID KIRSCHBAUM Time: 09:37am \/To: MARC MELVIN (Read 1 times) Subj: Translator Needed > Hello everyone... I am looking for anyone interested in helping > me complete a small project. What I need is a person that knows > how to translate pascal to assembly (mainly REGS), and then > compile the assembly into an OBJ... then, be able to send the > OBJ to an internet email address... so, for example, I would > send this person the code below, and they would translate it to > assembly, and compile into an OBJ file usable by Pascal 6.0: Sorry, mate, last TP I installed was 5.0. So the OBJ file is right out. Unless TP 6.0 can handle "normal" .OBJ files, those produced by TASM. And I think I'd have to know the memory model that TP 6.0 uses too: would it be NEAR or FAR? > Procedure Test(Num : Byte); > Var > Regs : Registers; > Begin > Regs.Ah := $0A; > Regs.Bh := (Num*4) Mod 5; > Intr($10,Regs); > End; > Now, the above is just an example, and not the actual code I > need translated. But, if anyone is interested in helping me > out, please send me a message at: > Internet Email: Marc.Melvin@mvcc.org > It is EXTREMELY important that someone be able to help... Well, if it's all _that_ important, I might be able to help. Send me some code and I'll see what I can do. Won't be able to test the results, but my assembly stuff usually runs pretty good, and if it isn't _too_ weird, I can test it in an assembly language shell. Geez .. it's been so long since I did anything in TP5, it would be quite a retraining effort to test it there. David Kirschbaum kirschd@gte.net --- * Origin: Toad Hall (1:3634/48.16) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDN00000Date: 09/13/97 From: JAN WAGEMAKERS Time: 08:48am \/To: MAURIZIO BRUNET (Read 1 times) Subj: IRQ6-Int 0Eh Hello Maurizio, Maurizio Brunet wrote to All : MB> Hello all, Excuse me for my BAD english. I wanna know if exist a MB> documentation of "IRQ6" ,this that control the diskette drive. My MB> "dream" is to program the drive directly, without use some interrupt. You can find more information on direct access to de Floppy Disk Controller in : 1. The 80XXX_95 (1995 Asm Code Snippets From Fido'S 80xxx Echo.) Take a look in \FDC\README : /* (README) This directory contains files related to floppy disks. fdcdemo.asm code for direct programming of IBM PC FDC, with CLI that can read, write, and format a variety of disk types, and can copy between disks and image files fdcdemo.com executable of above demo program fdcdemo.txt documentation for above fmt179x.asm disk formatter for WD179x FDCs (for CP/M) floppy.mar disk I/O routines for WD1771 FDC on MicroVAX format.mar disk formatter for WD1771 FDC on MicroVAX */ 2. You can try to study to source of 2M and 2MGUI, because 2M(GUI) also make use of programming the FDC directly. Take a look at : http://www.gui.uva.es/~ciri/ 3. I have done some little experiments by studying the source of 2MGUI and reading some info in a book "The Undocumented PC". With this information I have written a very little experiment that can detect which 'Diskette Controller IC' is used in your PC. I'll post the source of this experiment in the next message. MB> Bye Bye , Maurizio. Have a nice day. - Jan Wagemakers - o_o How does it feel at the End Of The Line (klinik) --- Terminate 5.00/Pro (*Linux-DosEmu-OpenDOS*) * Origin: Linux : Een goed OS hoeft niet duur te zijn :-) (2:292/8133.23) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDN00001Date: 09/13/97 From: JAN WAGEMAKERS Time: 09:21am \/To: MAURIZIO BRUNET (Read 1 times) Subj: FDCBOX : a little FDC direct access expe09:21:2309/13/97 Hello Maurizio, In a previous message I wrote to You : JW> 3. I have done some little experiments by studying the source of JW> 2MGUI and reading some info in a book "The Undocumented PC". With JW> this information I have written a very little experiment that can JW> detect which 'Diskette Controller IC' is used in your PC. I'll post JW> the source of this experiment in the next message. So, like promised, the source of this little experiment. Sorry for the dutch comments in it. BTW : (The parts with Spanish comments are the parts that I have copied from 2MGUI ;-) /* (FDCBOX.UUE) begin 644 fdcbox.arj M8.HJ`!X'`0`0``*8F$HM(YA*+2,``````````````````$9$0T)/6"Y!4DH` M`#1)N7H``&#J*``>!P$`$`$`F)I(+2.H`0``B`8``+33CJ<``"````!415-4 M+D%330``8X4T!P```6-BO?1I:8^?!O?_+Q4#D5B5^;P5G;)8M*"ZI\:=;E4E*RR=1&Q M6J5^2W[$9I.HD4F0>89'=1*]-)'(5+CD_8R^!P4T4#6_%D81:YU:S7C/,W5F MNM=CUGS1Z:/\X1"/MWL,8,-WN4/^IV#-$\AHOEAA_R[T698I#F*^^,RELO]C M2:,DC'M3KOG9NLMAO]RAT#.$)BY#"@@$&=&2G/9H"YP$_2JU,OY9 MI&V4@<+!,HB.#=XIZZC#O%VWV6V,2K7R%OL*K[0CD$,:HL[U0S$&5&"0QD#R MV,N>.1`!P$`$`$`F+!( M+2-L`@``A0T``!_RU3L``"````!)3D-,541%+DE.0P``<>N#:@```@YBF]6V MJ_ST+W_N!-L&L*O`B;*C&V7,SK+B2W97A3TM_LOM)/>I[TL)Y402[@>!01!Y4&ILVC:V).2=%."0&T6XL%P6"_PTF5QL=O!%? MI*+U'0*],"YJAL&0&X:`8S0BI=&A1H,=/J]0/OS6#<%4,@"B$8@C&0)AA-T+ MR8!4'0F*SSJ()$IB?3O,%W_0K9B)AB@0O<+DHT-;&16THES$50@$52"H4!*4 M-H!D-%$78@QE`R]4;;[^0PN'7#F,'<3%`[$K$;`52$03?%1B\T`+\2Y!CR&. M]&O[&'$8]VN]2@&\."`49"B6`W*4;`Z\T.-#&Q]#&R"%J]IM[A89Q M\/+9RFGC2[0KD,BXLNB$^[#2=X&@18&_OA7-;4FJ-TZ#R'*+28PZVQ:K[06+ M5D+%8'67-=KL!()>GQB>:RAO_CDR#[.[Z'!A2P.%:ZHT/4X]FQ49V0VQ5*F* M#+1MW"0>ZC1WR_9S'%3-7+36G*M?$OQYE^.=?^=??M?X80_U?O_6/Y2[-.8_ M*ZG,6=VP_G7[_/;8-GML&YU^__E_$E-__K^>C>#V!< MZ&Y*).XN`PPTW5_D$?)FW!*E*@T6W++3KFB6FI?5@/"!T8]33^LV3RYMW@L5 MJSS5GS259J.V`4,&I?,KUX;K=8-)BSWMIH-*:D:>F#+E4*=.GTB^TW^+$RLC M"N0L31UK7;>)WY1N;D:9?>A6MEYKC1.%%O^E"]RPX]99*._Y0WSTR;:`+3&% MKHBGG*:(-0M/.8)Y)?%(INW5ELJ^1,.56ZWMM(!@ZBH`'@/A6' M&J:T;MT[MFTU:MV>_PW/>MQ^[&KMZV`/)YLA[IX4J)"H6;LJ(K&GDXC]Z3WV M@T>;(2HF\7>(@L(/F3A/$5!%&*MO1>.M4;L.\G:K-?7^V55(*HB'S@^4"1(/ MOT09]F@QUP^=,^=XNK5=;:JA%`9Y![IE%1SJ7J%WR/*)`484`S2ZS+/7U6:3 M`)W:.E/G<:)V)EKVH(@3@.A0>QU=3]N-4W%^K56AKLX-$*7!G.$!!:D(L91A M>7M%>QC#U)9E,UN4Y%,RQTJ9!8BJ,HV26%O42N3)^`@%AF4[=:O(IVNSTSX: MN:01$00,!'AF#+0.D"3*3W'%^OXSW4@F3XTKI@M]!4O'E57S#%*^^ M]=WD#2]WTM7L.M_E+%R'"+?9#G0`DM=69L:^-.`'M_-P'\_`)EX`B8C6H?6G M1SK6=K**%N?"$E`V\BZ?#ZR[=!5G035G(JXIP=!>YAHHA$H7$-1>-$=&WDPB M^,BWFPL':_&QN6\8\7V7BK_]_-__,".[8C$1C#K^ZE[9X1(YDE9M>8144E?' M-9/,D+#EKA&$&J'8^JDA:MIW/P5I(L:YJ+*C^@'0<]<^6:U=V.F2YZ;(';=J M04'RX.A>,X(F83G]:-FZOGG&[AZ)PPB+'=T/M=@;J)!`WQ@ MP.E6./=+!I9\6M2UP1VXC"/U*?+RF$K/E]!LW.>3Q%B:W"P:MCP(2/5=S@G2 M]W])JYP;.*4_+"?\Y3O&O&EJNE/I7)1JK_N1J@I'P\.1K_^/Q_F/PA_^\?CN MX?[+$?E[[<07BY?/D2++RDL(VL^)Q'1<__V1`A_^LB!#\W(BS#9Q9CZ8O5D0 M2P`JT&/7DB1UB['GQW/3DS?P#)TMKB*7Z3D_YI9_?)#Y3<\^$V/_SYQ@ZBH` M'@9.:*-.```![F*ZX=$U_OW;=GK5 M-=1"6,5<@VJ\"R*,X3I"6*"*)UJTKXG@>S&T*'#VU11,%!KKP\7EM@O)>"\" M0AET&.+HBT3>F\-8HO\=$/@Q%BP]_[HH2]5\D+X5R9KFFGS)_6%^#`@.,&V^ M"`:'>DE],'XAY2@_O&#_]_NZ2`WVQ9&!;/L;GRGMVS\Z3U18V6B"PXF:(K$S M0SYN_%SBBXKM=+GBQ@VW]EOEVW]<\G#,)V3$:RNTH:8!,@)-90.Q%GW*-N^HXG8%WTK7(C$746DY@S MI.:+#RV>DSG['CV;%7`(:&OMH,T$6U3R4@26%GW4!.^&L-=%ZJ\)CAK<+K;W M,%HP:+F3GDO@DS0)A"[YG6F05I.4>$X0:-7)-*8Z-WGTPTYFL7=VU;^OA?D3 MP]LVZP<6]]K=WT$][>JTM[M7Y39\Z%6VW3,K:[, MJ:X9]9\[[LS,:T:+U5K%JKDZ:RXI:K=Y2@,(L5=Y>J?F6I^/[5*XUV9LIVI< M5A!0QZJ5.BDDI10Y''EH04'I0\6)#CQ[T\>)#XD:5>`YM.DGEITZ*;H=3)=_ MLFHK50@O0AD)J9:::A39UPT1EUEUMS>[VULTPZ/$);-$-^;@5>_W;#Z+T,W!N(&]`VC-P5,+'Z/M^\ M'+.#]_"'H\V`X$I@#Y&TH3!A2Q,#*EJ6MV):%N!*$!>?#2IU]JMIKK882^9M MZ/L;=^!UZ(*%"@QJ:VLNM)&+]TZ["#SHQ!6K'`Q0/),W#&@B!-H+(Q#'(2@V M0(<8$\DRXV[S!/F^_>?(2(V*=Z"%,;&],ML*G2VNM*]3]Z$YLOW`,(>GS8#O M#PE"@*K4Z4HXOO2^1+FO6M"YGQXTC=3P`XABSQ1"#\4!.BS1U=4QYDC4VB2/ MSNN"D"(W>NO0@EY0T!%X`TO%IS*QP6R5F5WO7%(F,\!C(!,#MNACBLV5*@+8 MQ6.*PV#R7G82E7 MP&@=-9%!,C&>_9\.Z%*B0/-<\RZOER#(8QLZKA-WV&[^5P+)V):M'2X&^*+@ MX*T1=TG-A;.,%T#C9LB].J9!,R5@6+)\L*N2M5;2+@<:2H&@U'5OWG\$/@X1 M@N195N8[&O-P557%1NZQ4[^RT#5/P5:_S9!_XJ.,`Q34RQ>!0`E.P*O5%)YGR>$.^57NQDXL<.U8IF;A;U=JP^F%V)T>NXOR98F1-R836.7BHC)N+K M2.BSG@Y2^#J@W',+M@WT,T209GK-?7!_#F_X^<5E:D?/96HGSUE_B/GK,9BQ M%D-V(,`TDW&?=61\I%I";1AOK_T3:GUC)*KQEQ=,&61HRE,:`4,;[LF/-D$8 MA6-E^*ZA5:!XUQ,YQ+K5]OY6?Q.U'T?<#&4"/,#'#-?G!C[+PRL0X]YUQVV( M8-0]275DC5/$K8DRU-+Q^^:'3+"G@O6U1I+/HR1H41T;9H]YYBC:M'RU[ M!OEB"ESYZDJKJ4\*I$2S_P!#<]!KN:I\M,XR-`)90"\A@2HKT?+E.$/=N!%K'5-CWN#__0L[+(7H_@U_Q&+U;]^<@M+/B.=&X9^V^1Y]N M8L.2,$#.>4%'1F0?A<]\IFZOAJ;BC=X%%[3=_Z,'GMUL.7]%,B5[)*9'-_4+ M_FF0K-"\^J,K/4SB$U.W/2Z@:2P'DA/+W""HNL!@ZBL`'@+XAZ>,6//[\\.\,%H1@8$,[2TY4J4'QAWX#O-7?;H< M_'QJ.I7JU`^GCAUS1#RS\#;T7ERU2C0JX3NF_9C5SN'@Y0WY3IQ8W3?)9/MX]TR\!\?&#SE:/P::>ZVYCYP9XV+;753D3,I2*+P-PA M$<6A<,CU>M@3'\J\-1>8=26CI*C]?_26@:[;`[Q=/VX;)@]O)P51:;AB&"$+ M`^`T`O7@Y.#Z/G_KGR[X]\8*]?)5F9*V5E=<)H=X[C0O0A5,XR&;`?P$G)Z* M5U7",\,BK1KZ=6I%D!3J5P65"AW`5+KH!J:A)JM"X24#0`V,4)98OQ*`/'@' MNWSNHSIWP=;UG@M'=?MDD0-<8#/,%`_`O05[*/F<]K9$V=J2O8HOF'N>0].Z MAF(F*]+3K=S)TM'2"AJ((#7,\2%P8.>!/ZH(_=#"P3?'OS?VO?R7A[<(QC65 M#6>5M+XAB+(H4XJ3$VPO\E^3PK%^4N@]5U,0C=`;I]<#.*)Q7M&>T&4+J,Y> M#Y-3D2=GF>F.+_E,HQMYZ=\[_-`#VX`A=+;0>(8HM^`3LPJVWFXO7_^[0SJN MB"Z'$[4,2C`GO4^K\!VH#.NF0NMH8"7^3ZG@.5$T\'.],`_ M_7R/)OBVZP`"RV2KVL#)[ M<3HN,-QU!H=%TY*G*#+T`%MYALHNG2Y8YJ4#(Y/!&;):?3>)O_I@X(M!T3)S2*&?4*&[M5R$W><*9L!VKM)SE\0GIQT=J1,1/]0HIOFE7M#KB] M*P.M,7%#LLDTT&[IZ_GC>1!:)8J4AQL7QS)XYR!0]Q21]B"VW:*T"OV>K?W- M4M"P+)6D?R)U%&,88-(%;9>]R49VP%4U1=VJ&0XSD=#(`[I38DW&LM8%!7*DBW2UNY]J=J7I90D3IL3L.LO2I TOPIC: 145 ASSEMBLY LANG. Ref: EDN00002Date: 09/13/97 From: GORDON J WILKINSON Time: 08:00pm \/To: TEDDY (Read 1 times) Subj: Ballons Why are there Ballons in the startup? /s --- FMail/386 1.02 * Origin: Teddys BBS, biggest little BBS in Tasmania 0362731501 (3:670/213) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDN00003Date: 09/15/97 From: INFORMATIONS FREE Time: 09:04pm \/To: KOBA TSVENIASHVILY (Read 1 times) Subj: AMD k6? * MOOD: Always happy :-) Hi Koba Tsveniashvily, hope you are having a nice day 30-Aug-97 20:00:00, Koba Tsveniashvily wrote to All Subject: AMD k6? KT> Hi Every1! Hi!!! KT> Please ,please,please help me! All right! KT> I am going to buy new computer in 1 week so I got confused! Every1 is KT> telling me to buy different CPU. Some tell me to buy Ppro,some tell me KT> P II sux, and some even tell me that Pentium is the best! KT> So now someone told me that some "AMD k6" is the fastest and cheapest. KT> Can anyone tell me: KT> 1)amd k6 exists? Yeah! It exits! KT> 2)is it fast? How much MHz? 166,200 and 233Mhz KT> 3)Is it P MMX compatible(I mean will the MMX program run on that) The K6 are compatible with all MMX system's. KT> 4)Is it faster than PPRO? I need to see de benchmark's. KT> 5)Is it faster than P II? " " " " " KT> 6)How much does it cost? I can't give you a price because I'm from Brazil and here it costs more. KT> Please mail me as soon as possible and if you can please suggest me hich KT> chip to buy. I prefer the AMD chips, because the Intel make a marketing program that only make see your side and not the user's, and the AMD is coming from many years with a better working, example, the K6 uses instructions MISC (all PC are MISC) but has internal instructions that we don't have acess, but are RISC (system's like Mac PowerPC, AS/400, and other's of high speed) and it work with this instructions. If I finish of editing the AMD site (Internet) that I download all homepages, I will give you the part of AMD-K6 complete, all right? Ahhh... made UUENCODE/UUDECODE. -=> Yours sincerely, Leandro Trombini <=- --- Terminate 4.00/Pro TerMail/QWK Algum viu o Win95 que tava aqui? Vi, saiu de frias. english-> Anybody saw the Win95 that was here? I saw, take vacation. --- PCBoard (R) v15.3/M 25 * Origin: Amplus 011 273-3998 So Paulo-SP, Brasil (4:801/135) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDN00004Date: 09/15/97 From: INFORMATIONS FREE Time: 09:04pm \/To: KOBA TSVENIASHVILY (Read 1 times) Subj: PLEASE HELP * MOOD: Always happy :-) Hi Koba Tsveniashvily, hope you are having a nice day 04-Sep-97 19:02:00, Koba Tsveniashvily wrote to All Subject: PLEASE HELP KT> Hello Everyone. Whats up? KT> I got some questions( as usual ;-) ): KT> 1)What computer you have currently(just curiosity)? AMD-5x86 133Mhz, 8Mb RAM(TOSHIBA), 1Gb HD JTS, 14" Techmedia, Newcom 33600 fax/modem. KT> 2)Does your computer work with all new programs? Sorry but what is new programs, Win95 programs? I don't work with Win95, and I will never work's. KT> 3)I am going to buy printer HP694. KT> a)Is it good printer? It's a good printer for who don't know many things about printers, or better, new user. KT> b)Whats the difference between HP690,HP694 and HP690C+? What is KT> PhotoKit? I thing that the difference is only the pages/minute. PhotoKit is a cartridge that has only a different ink that works better. KT> c)The price of HP694 and HP690C+ is same. Is there difference in KT> printers? I just answered. KT> d)Do you suggest me to not buy HP694? Yes. KT> c) If not above,which printer you suggest me? Epson. KT> 4)Now, I would like to ask you about HardDisk. KT> a)I want to buy Quantums FIREBALL UltraDma 33MB/sec 6.4 GB. Is it good KT> HD? I think it is good. KT> b)Is it really so fast? What???? 33Mb/sec is very high. KT> c)Whats the speed of WD? See some magazine about de Caviar, is the best of WD. KT> d)Is it better than WD? Faster? I don't know. KT> e)I have seen something like"Quantum SCSII"or something like that and t KT> costs twice as much as FIREBALL. What is that "scsii" or something? The most HD's works in IDE (is a system of interface of HD's +- ), the SCSI is a system that work better with netwares, the IDE interfaces, today, are IDE Enhanced, the last version. So buy a IDE HD that works fast has a low cost and don't have problem. KT> f)What you suggest me to buy for good perfomance? Compare and good luck. KT> 5)As you know I am going to buy new computer.I want my computer to stand KT> next criterions: KT> a)Long life.I mean I dont want to change it in 6 months or in 1 year. KT> b)I want that the GAMES will run without problems. KT> c)Programs like c++,java,internet stuff,and win95 or win98 will run KT> without problems. KT> So which computer you suggest and why? I answered in other msg. Excuse if my engligh is poor, but I need to make it better. -=> Yours sincerely, Leandro Trombini <=- --- Terminate 4.00/Pro TerMail/QWK Vc viu minha placa Pnp nova? Vi, tava rezando por vc. english-> Did you see my new Pnp board? Yeah, it was praying for you. --- PCBoard (R) v15.3/M 25 * Origin: Amplus 011 273-3998 So Paulo-SP, Brasil (4:801/135) --------------- FIDO MESSAGE AREA==> TOPIC: 145 ASSEMBLY LANG. Ref: EDP00000Date: 09/18/97 From: PHIL QUINTON Time: 07:08am \/To: SERGIO LO CASCIO (Read 2 times) Subj: Dma > Un giorno, Phil Quinton oso' discutere su Dma.... PQ>> Can someone tell me how to program the DMA chip on my Can PQ>> someone recommend a tutorial? > Yes, on PCGPE there is a source code about how to send data > from memory to sound blaster via dma....I think it'll help you! Cheers. I just downloaded it and I have found the section, thanks for the help! -=> Phil <=- --- * Origin: Watch the Shadows, Win95 is following.. (2:250/607.96)