/* ** File: hal_8086.c ** ** Contents: Rubus OS ** Tutorial ** Target Configuration 8086 DOS ** ** Version: 1.0 ** ** Copyright 1996-97 Arcticus Systems AB ** All Rights Reserved */ #include #include #include #include #include #include /*=============================================== Externals ================================================*/ extern halBsInit(); /*========================================================= halInit =========================================================*/ INT halInit(void) { halBsInit(); return(RCODE_OK); } /*========================================================= halWrite =========================================================*/ void halWrite(UCHARP buffer) { printf(buffer); } /*========================================================= halHalt =========================================================*/ void halHalt() { halBsTimerDisable(); } /*========================================================= halExit =========================================================*/ void halExit() { halBsExit(); }