Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

16-bit C code compiled with GCC

How do I compile 16-bit C code with GCC? I am trying to write a flat bootloader that just writes "Hello World!" to the computer and halts.

int main(int argc, char** argv)
{
    char* value = "Hello World!";
    __asm
    {
        mov si, value
    loop:
        lodsb
        cmp al, 0
    halt:
        je halt
        mov bx, 0x0007 ; Black BG, White TXT
        mov ah, 0x0E   ; Teletype output
        int 0x10
        jmp loop
    }
 }
like image 977
Cole Tobin Avatar asked Feb 20 '23 14:02

Cole Tobin


1 Answers

You don't. You can't. GCC doesn't generate 16-bit x86 code.

Use Open Watcom C/C++ or the ancient Turbo C++ (v 1.01 is freely available online).

like image 143
Alexey Frunze Avatar answered Mar 03 '23 12:03

Alexey Frunze