;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; RDOS operating system ; Copyright (C) 1988-2000, Leif Ekblad ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. The only exception to this rule ; is for commercial usage in embedded systems. For information on ; usage in commercial embedded systems, contact embedded@rdos.net ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ; ; The author of this program may be contacted at leif@rdos.net ; ; FAT.ASM ; FAT filesystem driver ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NAME fat GateSize = 16 INCLUDE ..\driver.def INCLUDE ..\user.def INCLUDE ..\os.def INCLUDE ..\user.inc INCLUDE ..\os.inc INCLUDE ..\fs.inc INCLUDE fat.inc attr_read_only EQU 1 attr_hidden EQU 2 attr_system EQU 4 attr_volume EQU 8 attr_dir EQU 10h attr_arcive EQU 20h MAX_DRIVES EQU 'Z' -'A' + 1 extrn allocate_dir_sel:near extrn free_dir_sel:near extrn cache_dir12_16:near extrn cache_dir32:near extrn create_dir:near extrn delete_dir:near extrn delete_file:near extrn rename_file:near extrn create_file:near extrn update_dir:near extrn update_file:near extrn set_file_size:near extrn allocate_file_list:near extrn free_file_list:near extrn read_file_block:near extrn write_file_block:near extrn format12:near extrn format16:near extrn format32:near extrn get_param12:near extrn get_param16:near extrn get_param32:near .386p code SEGMENT byte public use16 'CODE' assume cs:code ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: MOUNT12 ; ; DESCRIPTION: Mount FAT12 on a drive ; ; RETRUNS: DS:SI ADDRESS TO DRIVE DATA ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; mount12 PROC far push es ; push ax mov eax,SIZE drive_data_seg AllocateSmallGlobalMem mov ax,es mov ds,ax mov ax,flat_sel mov es,ax pop ax mov ds:fat_type,fat12 call get_param12 ; pop es ret mount12 ENDP ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: MOUNT16 ; ; DESCRIPTION: Mount FAT16 on a drive ; ; RETRUNS: DS:SI ADDRESS TO DRIVE DATA ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; mount16 PROC far push es ; push ax mov eax,SIZE drive_data_seg AllocateSmallGlobalMem mov ax,es mov ds,ax mov ax,flat_sel mov es,ax pop ax mov ds:fat_type,fat16 call get_param16 ; pop es ret mount16 ENDP ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: MOUNT32 ; ; DESCRIPTION: Mount FAT32 on a drive ; ; RETRUNS: DS:SI ADDRESS TO DRIVE DATA ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; mount32 PROC far push es ; push ax mov eax,SIZE drive_data_seg AllocateSmallGlobalMem mov ax,es mov ds,ax mov ax,flat_sel mov es,ax pop ax mov ds:fat_type,fat32 call get_param32 ; pop es ret mount32 ENDP ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: FLUSH ; ; DESCRIPTION: Flush filesystem ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; flush PROC far clc ret flush ENDP ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: DISMOUNT ; ; DESCRIPTION: Dismount filesystem ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; dismount PROC far ret dismount ENDP ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: GET_DRIVE_INFO ; ; DESCRIPTION: Read info from drive ; ; RETURNS: EAX FREE UNITS ; CX BYTES / UNIT ; EDX TOTAL UNITS ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; get_drive_info PROC far mov eax,ds:free_clusters mov edx,ds:clusters mov cl,ds:fat_cluster_shift shl eax,cl shl edx,cl mov cx,200h clc ret get_drive_info ENDP PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: GET_IOCTL_DATA ; ; DESCRIPTION: Get IOCTL data ; ; PARAMETERS: BX HANDLE ; ; RETURNS: DX IOCTL_DATA ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; get_ioctl_data PROC far movzx dx,al or dx,40h ret get_ioctl_data ENDP PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: init ; ; DESCRIPTION: init device ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; dummy Proc far stc ret dummy Endp fs12_name DB 'FAT12',0 fs12_ctrl: f12s00 DW OFFSET format12, fat_code_sel f12s01 DW OFFSET mount12, fat_code_sel f12s02 DW OFFSET flush, fat_code_sel f12s03 DW OFFSET dismount, fat_code_sel f12s04 DW OFFSET get_drive_info, fat_code_sel f12s05 DW OFFSET allocate_dir_sel, fat_code_sel f12s06 DW OFFSET free_dir_sel, fat_code_sel f12s07 DW OFFSET cache_dir12_16, fat_code_sel f12s08 DW OFFSET update_dir, fat_code_sel f12s09 DW OFFSET update_file, fat_code_sel f12s10 DW OFFSET create_dir, fat_code_sel f12s11 DW OFFSET delete_dir, fat_code_sel f12s12 DW OFFSET delete_file, fat_code_sel f12s13 DW OFFSET rename_file, fat_code_sel f12s14 DW OFFSET create_file, fat_code_sel f12s15 DW OFFSET get_ioctl_data, fat_code_sel f12s16 DW OFFSET set_file_size, fat_code_sel f12s17 DW OFFSET dummy, fat_code_sel f12s18 DW OFFSET dummy, fat_code_sel f12s19 DW OFFSET allocate_file_list,fat_code_sel f12s20 DW OFFSET free_file_list, fat_code_sel f12s21 DW OFFSET read_file_block, fat_code_sel f12s22 DW OFFSET write_file_block, fat_code_sel fs16_name DB 'FAT16',0 fs16_ctrl: f16s00 DW OFFSET format16, fat_code_sel f16s01 DW OFFSET mount16, fat_code_sel f16s02 DW OFFSET flush, fat_code_sel f16s03 DW OFFSET dismount, fat_code_sel f16s04 DW OFFSET get_drive_info, fat_code_sel f16s05 DW OFFSET allocate_dir_sel, fat_code_sel f16s06 DW OFFSET free_dir_sel, fat_code_sel f16s07 DW OFFSET cache_dir12_16, fat_code_sel f16s08 DW OFFSET update_dir, fat_code_sel f16s09 DW OFFSET update_file, fat_code_sel f16s10 DW OFFSET create_dir, fat_code_sel f16s11 DW OFFSET delete_dir, fat_code_sel f16s12 DW OFFSET delete_file, fat_code_sel f16s13 DW OFFSET rename_file, fat_code_sel f16s14 DW OFFSET create_file, fat_code_sel f16s15 DW OFFSET get_ioctl_data, fat_code_sel f16s16 DW OFFSET set_file_size, fat_code_sel f16s17 DW OFFSET dummy, fat_code_sel f16s18 DW OFFSET dummy, fat_code_sel f16s19 DW OFFSET allocate_file_list,fat_code_sel f16s20 DW OFFSET free_file_list, fat_code_sel f16s21 DW OFFSET read_file_block, fat_code_sel f16s22 DW OFFSET write_file_block, fat_code_sel fs32_name DB 'FAT32',0 fs32_ctrl: f32s00 DW OFFSET format32, fat_code_sel f32s01 DW OFFSET mount32, fat_code_sel f32s02 DW OFFSET flush, fat_code_sel f32s03 DW OFFSET dismount, fat_code_sel f32s04 DW OFFSET get_drive_info, fat_code_sel f32s05 DW OFFSET allocate_dir_sel, fat_code_sel f32s06 DW OFFSET free_dir_sel, fat_code_sel f32s07 DW OFFSET cache_dir32, fat_code_sel f32s08 DW OFFSET update_dir, fat_code_sel f32s09 DW OFFSET update_file, fat_code_sel f32s10 DW OFFSET create_dir, fat_code_sel f32s11 DW OFFSET delete_dir, fat_code_sel f32s12 DW OFFSET delete_file, fat_code_sel f32s13 DW OFFSET rename_file, fat_code_sel f32s14 DW OFFSET create_file, fat_code_sel f32s15 DW OFFSET get_ioctl_data, fat_code_sel f32s16 DW OFFSET set_file_size, fat_code_sel f32s17 DW OFFSET dummy, fat_code_sel f32s18 DW OFFSET dummy, fat_code_sel f32s19 DW OFFSET allocate_file_list,fat_code_sel f32s20 DW OFFSET free_file_list, fat_code_sel f32s21 DW OFFSET read_file_block, fat_code_sel f32s22 DW OFFSET write_file_block, fat_code_sel init PROC far push ds push es push fs push gs pushad mov bx,fat_code_sel InitDevice ; mov ax,cs mov ds,ax mov es,ax ; mov si,OFFSET fs12_name mov di,OFFSET fs12_ctrl RegisterFileSystem ; mov si,OFFSET fs16_name mov di,OFFSET fs16_ctrl RegisterFileSystem ; mov si,OFFSET fs32_name mov di,OFFSET fs32_ctrl RegisterFileSystem ; popad pop gs pop fs pop es pop ds ret init ENDP code ENDS END init