File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -33,29 +33,29 @@ void init() {
3333 bprint ("Loading " );
3434 itoa (RAMDISK_DATA_SIZE_BYTES , buf , 10 );
3535 bprint (buf );
36- bprint ("B RAM Disk..." );
36+ bprint ("B RAM Disk... " );
3737
3838 ramdisk_init (); // Start the RAM Disk
3939
4040 // Success " Done!\n"
41- success (" Done!\n" );
41+ success ("Done!\n" );
4242
43- bprint ("Looking for IDE master..." ); // Print out "Looking for IDE master... " on both screen and serial
43+ bprint ("Looking for IDE master... " ); // Print out "Looking for IDE master... " on both screen and serial
4444 // Check if the IDE driver finds a drive, if so run this loop
4545 if (ide_detect ()) {
4646 // Success " Found!\n"
47- success (" Found!\n" );
47+ success ("Found!\n" );
4848
4949 // Print "Loading IDE Drive..." on screen and serial
50- bprint ("Loading IDE Drive..." );
50+ bprint ("Loading IDE Drive... " );
5151
5252 // Check if the IDE drive has been loaded successfully, if so then run this loop
5353 if (ide_init ()) {
5454 // Success " Done!\n"
55- success (" Done!\n" );
55+ success ("Done!\n" );
5656 } else { // If IDE driver failed, run this loop
5757 // Error " Failed!\n"
58- error (" Failed!\n" );
58+ error ("Failed!\n" );
5959 }
6060 } else { // If IDE driver can not find drive, run this loop
6161 // Error " Not Found!\n"
You can’t perform that action at this time.
0 commit comments