You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bios.h 271B

12345678910
  1. #ifndef BIOS_H
  2. #define BIOS_H
  3. extern unsigned long currticks ( void );
  4. extern void cpu_nap ( void );
  5. extern void disk_init ( void );
  6. extern unsigned int pcbios_disk_read ( int drive, int cylinder, int head,
  7. int sector, char *fixme_buf );
  8. #endif /* BIOS_H */