Turbo Assembler	 Version 2.0	    21/08/00 00:01:42	    Page 1
disk1.asm



      1	0000			     code1   segment 'code'
      2				     assume  cs:code1,ds:code1
      3				     org     100h
      4	0100			     main    proc
      5	0100  8C D8		     mov     ax,ds
      6	0102  8E C0			     mov     es,ax
      7	0104  BB 0125r			     lea     bx,buffer
      8	0107  B2 00			     mov     dl,0
      9	0109  B6 00			     mov     dh,0
     10	010B  B9 00C8			     mov     cx,200
     11	010E  51		     cycle:  push    cx
     12	010F  53			     push    bx
     13	0110  8B D9			     mov     bx,cx
     14	0112  B5 00			     mov     ch,0
     15	0114  8A CB			     mov     cl,bl
     16	0116  B0 01			     mov     al,1
     17	0118  B4 03			     mov     ah,3
     18	011A  5B			     pop     bx
     19	011B  CD 13			     int     13h
     20	011D  59			     pop     cx
     21	011E  E2 EE			     loop    cycle
     22	0120  B8 4C00			     mov     ax,4c00h
     23	0123  CD 21			     int     21h
     24	0125			     main    endp
     25	0125  00		     buffer  db	     0
     26	0126			     code1   ends
     27				     end     main
Turbo Assembler	 Version 2.0	    21/08/00 00:01:42	    Page 2
Symbol Table




Symbol Name			  Type	 Value

??DATE				  Text	 "21/08/00"
??FILENAME			  Text	 "disk1	  "
??TIME				  Text	 "00:01:42"
??VERSION			  Number 0200
@CPU				  Text	 0101H
@CURSEG				  Text	 CODE1
@FILENAME			  Text	 DISK1
@WORDSIZE			  Text	 2
BUFFER				  Byte	 CODE1:0125
CYCLE				  Near	 CODE1:010E
MAIN				  Near	 CODE1:0100

Groups & Segments		  Bit Size Align  Combine Class

CODE1				  16  0126 Para	  none	  CODE
