home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / SRC / msdos_diskaccess.lzh / MS_DISK_ACCESS / bootblk.h next >
Text File  |  1990-06-15  |  719b  |  18 lines

  1. /*
  2.  * Just enough of a high/low density 3.5" DOS boot block
  3.  * to define the FS parameters,  should keep us out of Copyright
  4.  * trouble!  If someone wants DOS bootable filesystems,
  5.  * include the complete boot block for your machine,
  6.  * and make sure to create the "hidden" files in mkdfs.c
  7.  * (this is not easy!)
  8.  */
  9. static unsigned char hdboot[] = {
  10. 0xeb,0x34,0x90,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x02,0x01,0x01,0x00,
  11. 0x02,0xe0,0x00,0x40,0x0b,0xf9,0x09,0x00,0x12,0x00,0x02,0x00,0x00,0x00,0x00,0x00,
  12. } ;
  13.  
  14. static unsigned char ldboot[] = {
  15. 0xeb,0x34,0x90,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x00,0x02,0x02,0x01,0x00,
  16. 0x02,0x70,0x00,0xa0,0x05,0xf9,0x03,0x00,0x09,0x00,0x02,0x00,0x00,0x00,0x00,0x00,
  17. } ;
  18.