For Some Reason some of the files i attempted to commit all but 2 minutes ago did not save soooo i fixed it
This commit is contained in:
parent
a47dfc353b
commit
66e9e959ae
@ -14,8 +14,8 @@ typedef struct {
|
|||||||
uint16_t heads;
|
uint16_t heads;
|
||||||
} FLOPPY_DISK;
|
} FLOPPY_DISK;
|
||||||
|
|
||||||
void FLPDSK_Handler();
|
void Floppy_Handler();
|
||||||
void FLPDSK_Drive_Init(uint8_t drive);
|
void Floppy_Drive_Init(uint8_t drive);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -71,11 +71,11 @@ void __attribute__((section(".entry"))) start(BootParams* bootParams) {
|
|||||||
printf("Done!\n");
|
printf("Done!\n");
|
||||||
|
|
||||||
printf("Load Basic Storage Drivers...");
|
printf("Load Basic Storage Drivers...");
|
||||||
i686_IRQ_RegisterHandler(6, FLPDSK_Handler);
|
i686_IRQ_RegisterHandler(6, Floppy_Handler);
|
||||||
printf("Done!\n");
|
printf("Done!\n");
|
||||||
masterFDDType = Master_FDD_Detect();
|
masterFDDType = Master_FDD_Detect();
|
||||||
slaveFDDType = Slave_FDD_Detect();
|
slaveFDDType = Slave_FDD_Detect();
|
||||||
FLPDSK_Drive_Init(1);
|
Floppy_Drive_Init(1);
|
||||||
Print_Storage_Types(masterFDDType, slaveFDDType);
|
Print_Storage_Types(masterFDDType, slaveFDDType);
|
||||||
// printf("Kernel Params: %s\n", bootParams->KernelParams);
|
// printf("Kernel Params: %s\n", bootParams->KernelParams);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user