This commit is contained in:
Adrien Bourmault 2020-02-13 15:51:28 +01:00
parent 59f3f24d0a
commit ac43dcd8f7
No known key found for this signature in database
GPG Key ID: AFEE5788AEE3F4EC
2 changed files with 10 additions and 0 deletions

View File

@ -36,6 +36,10 @@
void IoReadATA(void *sectorBuffer, char n, char first);
void IoDumpSector(void);
//----------------------------------------------------------------------------//
//----------------------------------------------------------------------------//
#endif

View File

@ -24,6 +24,7 @@
#include <io/ata.h>
#include <io/vga.h>
#include <io/pci.h>
void IoDumpFirstSector(void)
{
@ -41,3 +42,8 @@ void IoDumpFirstSector(void)
KernLog("\n\n");
}
void IoDetectATA(void)
{
}