1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

Work on ATA

This commit is contained in:
Adrien Bourmault 2019-05-24 10:55:29 +02:00
parent b96f59abf0
commit d8a679faf1

View File

@ -141,7 +141,7 @@ error_t CmdDumpATASect(int argc, char **argv, char *cmdline)
IoReadATA(sector, 1, sectNumber); IoReadATA(sector, 1, sectNumber);
while(x < 513) { while(x < 512) {
KernLog("%C", shcol); KernLog("%C", shcol);
for (int i = 0; i < step; i++) { for (int i = 0; i < step; i++) {
KernLog("%02x ", (uchar)sector[i+x]); KernLog("%02x ", (uchar)sector[i+x]);