Tiberiu Chibici
0372dcee81
==================================================== Mainly changed: HAL.VFS + Designed virtual file system + Completed the VFS + Added verbose mode for VFS + Updated shell script, now shows build number when building ? TODO: Implement one file system (most likely FAT12) ? TODO: Mount floppy device
16 lines
269 B
C
16 lines
269 B
C
/*
|
|
* storage.h
|
|
*
|
|
* Created on: Aug 23, 2011
|
|
* Author: Tiberiu
|
|
*/
|
|
|
|
#ifndef STORAGE_H_
|
|
#define STORAGE_H_
|
|
|
|
#include <types.h>
|
|
|
|
extern void ConvertLbaToChs(uint32 SectorsPerTrack, uint32 lba, uint32 *cyl, uint32 *head, uint32 *sector);
|
|
|
|
#endif /* STORAGE_H_ */
|