Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (79.19 KB, 2 trang )
THỰC HÀNH HỆ ĐIỀU HÀNH – BÀI 3
Mục tiêu : Tìm hiểu cách quản lý file và điã. Thực hành trên đĩa mềm 1.44Mb
Bài 1 :
/* The Boot sector on the floppy disk contains two things, namely, boot
parameters and the disk bootstrap program. The purpose of the disk
bootstrap program is to load DOS files from the disk into memory.
Whether the disk bootstrap program would be used or not depends on
whether the disk is being used for booting the computer or not. The
boot parameters are used by DOS at the time a read or write operation
is performed on the disk. This is because the boot parameters contain
the vital information about how the disk has been formatted. From
format to format the values of the boot parameters may change, but
their order remains same. The following program display boot parameters
of floppy.
*/
/* Display boot parameters of floppy */
# include "dos.h"
# include "stdlib.h"
# include "stdio.h"
# include "conio.h"
struct boot
{
unsigned char code[3] ;
unsigned char system_id[8] ;
int bytes_per_sec ;
char sec_per_clus ;
int res_sec ;
char fat_copies ;
int root_dir_entry ;
unsigned int no_sects ;
unsigned char format_id ;