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:
Tyler McGurrin 2025-06-04 06:17:27 -04:00
parent a47dfc353b
commit 66e9e959ae
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ typedef struct {
uint16_t heads;
} FLOPPY_DISK;
void FLPDSK_Handler();
void FLPDSK_Drive_Init(uint8_t drive);
void Floppy_Handler();
void Floppy_Drive_Init(uint8_t drive);

View File

@ -71,11 +71,11 @@ void __attribute__((section(".entry"))) start(BootParams* bootParams) {
printf("Done!\n");
printf("Load Basic Storage Drivers...");
i686_IRQ_RegisterHandler(6, FLPDSK_Handler);
i686_IRQ_RegisterHandler(6, Floppy_Handler);
printf("Done!\n");
masterFDDType = Master_FDD_Detect();
slaveFDDType = Slave_FDD_Detect();
FLPDSK_Drive_Init(1);
Floppy_Drive_Init(1);
Print_Storage_Types(masterFDDType, slaveFDDType);
// printf("Kernel Params: %s\n", bootParams->KernelParams);