diff --git a/.gitignore b/.gitignore index 07b498d..17a1953 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build/ -.mailmap \ No newline at end of file +.mailmap +.vscode \ No newline at end of file diff --git a/src/bootloader/stage2/main.c b/src/bootloader/stage2/main.c index 7592ea9..1e7137d 100644 --- a/src/bootloader/stage2/main.c +++ b/src/bootloader/stage2/main.c @@ -1,7 +1,7 @@ #include "stdint.h" #include "stdio.h" -void _cdecl cstart_(uint16_t bootDrive) +void _cdecl cstart_(uint16_t bootDrive) { puts("Hello World from the Stage 2 of the bootloader written in C!"); for (;;);