os3/stage1/stage1.c
John 5b17b79264
[Stage1] Fix linker to force main() at base address
[Stage1] Add basic write-to-screen utilities for VGA mode 3
2023-01-14 02:50:37 +01:00

17 lines
280 B
C

//
// Created by barba on 06/10/2022.
//
#include "../os3_common/datatypes.h"
#include "../os3_common/packing.h"
#include "include/screen.h"
int main() {
write_string("OS3 Booted into stage 1!\n", 0);
write_string("Looking for stage 2....", 0);
while(1) {
};
return 0;
}