home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a062 / 1.ddi / MFOXP.ASM < prev    next >
Encoding:
Assembly Source File  |  1990-10-08  |  3.5 KB  |  159 lines

  1. ;Title cover all of use-ares
  2. ;*****************************
  3. stack segment para stack 'stack'
  4.         dw 64 dup(?)
  5. stack ends
  6. ;*****************************
  7. datasg segment para public 'data'
  8.       wpcb1    dw  ?
  9.       wpcb2    dw  80h
  10.       wpcb3    dw  ?
  11.       wpcb4    dw  5ch
  12.       wpcb5    dw  ?
  13.       wpcb6    dw  6ch
  14.       wpcb7    dw  ?
  15.       wfilenam  db 'mfox.exe                         ',00h,00h,00h
  16.       buf     db  55h,8bh,0ech,81h,0ech,00h,10h,8dh,86h,00h,0f0h,0a3h,32h,6ah,0a3h,48h
  17.               db  6ah,80h,0c4h,08h,0a3h,4ch,6ah,8dh,86h,00h,0f8h,0a3h,0a4h,8bh,0ffh,76h
  18.               db  08h,0ffh,76h,06h,9ah,02h,02h,00h,00h,83h,0c4h,04h,2bh,0c0h,50h,0a1h
  19. datasg  ends
  20. ;*****************************
  21. codesg segment para public 'code'
  22. start proc far
  23.       assume cs:codesg,ds:datasg,ss:stack,es:nothing
  24.       push ds
  25.       sub ax,ax
  26.       push ax
  27.       push ds
  28.       mov dx,ax
  29.       mov ax,2594h
  30.       int 21h
  31.       mov bx,2ch
  32.       mov si,bx
  33.       mov cx,[si]
  34.       mov ds,cx
  35.       mov ax,2592h
  36.       int 21h
  37.       lea dx,int80
  38.       mov ax,cs
  39.       mov ds,ax
  40.       mov ax,2580h
  41.       int 21h
  42.       pop ds
  43.       mov ax,3594h
  44.       int 21h
  45.       mov bx,200h
  46.       mov ah,4ah
  47.       int 21h
  48.       mov ax,3594h
  49.       int 21h
  50.       mov ax,datasg
  51.       mov ds,ax
  52.       mov ax,es
  53.       mov wpcb3,ax
  54.       mov wpcb5,ax
  55.       mov wpcb7,ax
  56.       mov ax,3592h
  57.       int 21h
  58.       mov ax,datasg
  59.       mov ds,ax
  60.       mov bx,es
  61.       mov wpcb1,bx
  62.       lea dx,wpcb1
  63.       mov bx,dx
  64.       mov ax,ds
  65.       mov es,ax
  66.       lea dx,wfilenam
  67.       mov ah,4bh
  68.       mov al,00h
  69.       int 21h
  70. ;****************************
  71.       mov ax,200h
  72.       mov si,ax
  73.       mov cx,40h
  74.       mov ax,00h
  75.       mov ds,ax
  76. cle:  mov [si],ax
  77.       inc si
  78.       inc si
  79.       loop cle
  80.       ret
  81. ;****************************
  82. int80:push es
  83.       push ds
  84.       push bp
  85.       push di
  86.       push si
  87.       push dx
  88.       push cx
  89.       push bx
  90.       push ax
  91. ;*******     work    *******
  92.       mov ax,2560h
  93.       int 21h
  94.       mov ax,3594h
  95.       int 21h
  96.       mov ax,datasg
  97.       mov ds,ax
  98.       lea ax,buf
  99.       mov si,ax
  100.       mov bx,2170h
  101.       mov cx,30h
  102. ldo:  mov al,[si]
  103.       cmp al,00
  104.       jz  ldo1
  105.       push ds
  106.       push es
  107.       pop  ds
  108.       mov [bx],al
  109.       pop  ds
  110. ldo1: inc bx
  111.       inc si
  112.       loop ldo
  113. ;     process
  114.       mov ax,00
  115.       mov ds,ax
  116.       mov ax,200h
  117.       mov si,ax
  118.       mov cx,60h
  119. l2:   mov ax,0
  120.       mov [si],ax
  121.       inc si
  122.       inc si
  123.       loop  l2
  124.       mov ax,datasg
  125.       mov ds,ax
  126.       lea ax,buf
  127.       mov si,ax
  128.       mov cx,50h
  129. l3:   mov ax,0
  130.       mov [si],ax
  131.       inc si
  132.       inc si
  133.       loop  l3
  134.       mov ax,cs
  135.       mov ds,ax
  136.       mov ax,81h
  137.       mov si,ax
  138.       mov cx,3ah
  139.       mov ax,00h
  140. l4:   mov [si],ax
  141.       inc si
  142.       inc si
  143.       loop  l4
  144. ;***********************
  145.       pop ax
  146.       pop bx
  147.       pop cx
  148.       pop dx
  149.       pop si
  150.       pop di
  151.       pop bp
  152.       pop ds
  153.       pop es
  154.       iret
  155. start endp
  156. ;*************************************
  157. codesg ends
  158.       end start
  159.