我正在关注os教程。这是我的代码:
nasm中的加载器
; Loader.asm
bits 32
extern _main
global start
start:
call _main ; Call our kernel's main() function
cli ; Stop interrupts (thats another article?)
hlt ; Stop all instructions
我的C代码
//main.c
int main( void )
{
puts("Hello, world!"); /* Print our welcome message */
for(;;); /* Keep the OS running */
}
/* video.c */
int x, y; /* Our global 'x' and 'y' */
char color; /* Our global color attribute */
void putc( unsigned char c )
{
char *vidmem = (char*)0xB8000; /* pointer to video memory */
int pos = ( y * 2 ) + x; /* Get the position */
vidmem[pos] = c; /* print the character */
vidmem[pos++] = color; /* Set the color attribute */
if (c == '\n') // newline
{
y++;
x = 0;
}
else
x += 2; // 2 bytes per char
}
int puts( char *message )
{
int length;
while(*message)
{
putc(*message++);
length++;
}
return length;
}
我通过运行编译这些:
gcc -ffreestanding -fno-builtin -nostdlib -c *.c // (that's main.c and video.c)
nasm -f aout loader.asm -o loader.o
我能够成功编译,当我尝试使用ld将它们链接到bin文件时,显示错误:
ld:错误:loader.o:1:1:无效字符
我做错了什么?
答案 0 :(得分:0)
您应该要求nasm
创建elf
输出,而不是aout
。也就是说,使用-f elf
。