Make it compile.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23472 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-01-13 01:41:25 +00:00
parent b1e9164f9c
commit 110abe94eb
2 changed files with 7 additions and 5 deletions
+3 -3
View File
@@ -51,12 +51,12 @@
floppy_start: floppy_start:
floppy_end: floppy_end:
.org FAILURE_STRING // .org FAILURE_STRING
.string " Loading failed! Press key to reboot.\r\n" .string " Loading failed! Press key to reboot.\r\n"
.org DOT_STRING // .org DOT_STRING
.string "." .string "."
.org 0x01fe // .org 0x01fe
.word 0xaa55 .word 0xaa55
// this bumps the "start" label to offset 0x0200 as // this bumps the "start" label to offset 0x0200 as
// expected by the BFS boot loader, and also marks // expected by the BFS boot loader, and also marks
@@ -9,12 +9,12 @@
#ifndef _TOSCALLS_H #ifndef _TOSCALLS_H
#define _TOSCALLS_H #define _TOSCALLS_H
#include <OS.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
/* those are used by asm code too */
#define DEV_PRINTER 0 #define DEV_PRINTER 0
#define DEV_AUX 1 #define DEV_AUX 1
#define DEV_CON 2 #define DEV_CON 2
@@ -44,6 +44,8 @@ extern "C" {
#ifndef __ASSEMBLER__ #ifndef __ASSEMBLER__
#include <OS.h>
/* /*
* Atari BIOS calls * Atari BIOS calls
*/ */