17 lines
280 B
C
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;
|
|
}
|