; Copyright (c) 1996 Brian Fisher ; All rights reserved. ; ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions ; are met: ; 1. Redistributions of source code must retain the above copyright ; notice, this list of conditions and the following disclaimer. ; 2. Redistributions in binary form must reproduce the above copyright ; notice, this list of conditions and the following disclaimer in the ; documentation and/or other materials provided with the distribution. ; 3. The name of the author may not be used to endorse or promote products ; derived from this software without specific prior written permission. ; ; THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ; IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ; IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ; NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ; THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ;************************************************************************* ;****** File stuff for directories and lump files ;* ;* .286 Ideal Model Small Public findfiles Codeseg dta dw ? src dw ? dest dw ? lump dw ? wrote dw ? found dw ? data dw ? bseg dw ? list dw ? listlen dw ? path dw ? Proc Findfiles ;fil$, newfile$, buff() push bp mov bp,sp push ds si es di mov [cs:data],ds ;store data segment mov bx,[ss:bp+06] mov di,[ds:bx+0ah] mov [cs:dta],di add di,30 mov [cs:found],di add di,98 mov [cs:wrote],di ;store saved file address mov ax,[ds:bx+02h] mov [cs:bseg],ax ;store buffer segment mov es,ax ;set es to buffer seg mov si,[ss:bp+10] mov ds,[cs:data] lodsw mov [cs:listlen],ax ;store filemask string length mov dx,[ds:si] mov [cs:list],dx ;store pointer to next filemask momask: mov ds,[cs:bseg] mov dx,[cs:dta] mov ax,1a00h int 21h ;set dta mov ds,[cs:data] mov dx,[cs:list] mov cx,07h mov ax,4e00h int 21h jc file ;find first file mofile: mov ds,[cs:bseg] ;ds:si = found file mov si,[cs:found] moletter: lodsb stosb ;write filename to write buffer cmp al,0 jnz moletter mov ax,0a0dh stosw mov ax,4f00h int 21h jnc mofile ;find next file mov ds,[cs:data] mov si,[cs:list] checkit: lodsb ;load a character sub [cs:listlen],1 jz file ;if len = 0 done cmp al,0 jnz checkit ;if it's not chr$(0), keep looking mov [cs:list],si ;set list pointer to next set jmp momask file: mov ds,[cs:data] mov si,[ss:bp+08] add si,2 mov dx,[ds:si] mov ax,3c00h mov cx,0 int 21h jc done mov [cs:dest],ax mov dx,[cs:wrote] mov cx,di sub cx,dx jz nodata mov bx,[cs:dest] mov ds,[cs:bseg] mov ax,4000h int 21h nodata: mov bx,[cs:dest] mov ax,3e00h int 21h done: pop di es si ds bp retf 6 endp Findfiles end