summaryrefslogtreecommitdiffstats
path: root/01_exercise/bootloader.c
blob: 08adb1cdc9d106bc7fc547b78b7d57cc4558766c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* needs to stay the first line */
asm(".code16gcc\njmp $0, $main");

/* space for additional code */

char WRITE_CHARACTER_TTY = 0x0E;

void put(char c) {
    short command = WRITE_CHARACTER_TTY << 8 | c;
    // volatile because there is no output, so the function might get optimized
    // away
    // clang-format off
    asm volatile(
        "int $0x10;"
        ::"a"(command)
    );
    // clang-format on
}

char WRITE_STRING = 0x13;

void print(char const * str) {
    while(*str != '\0')  {
        put(*str);
        ++str;
    }
}

void main(void) {
   print("Hello!");
}