Startpunkten

This commit is contained in:
2026-03-05 13:45:36 +01:00
commit 5fe658677a
14 changed files with 813 additions and 0 deletions

53
hal.h Normal file
View File

@@ -0,0 +1,53 @@
#ifndef _HAL_H_
#define _HAL_H_
/*
** File: hal.h
**
** Contents: Rubus OS
** Validation Application
** Target 8086
** Borland 3.1 C/C++ Programming Environment
** HAL Definitions
**
** Version: 1.1
**
** Copyright 1996-98 Arcticus Systems AB
** All Rights Reserved
**
*/
#include <basic/bs_basic.h>
#define SIZE_MONITOR_BUFFER 120
/*==============================================
Types
===============================================*/
#define LOC_FUNC
#define LOC_VAR
#define LOC_VAR_ASC
/*===============================================
Externals
===============================================*/
#ifdef COMP_CPLUSPLUS
extern "C" {
#endif
extern void redLogShow(void);
extern void blueLogShow(void);
/*===============================================
Prototypes
===============================================*/
extern void halExit(void);
extern void halBsTimerStart(void);
extern void halBsTimerStop(void);
extern void halWrite(UCHARP buffer);
#ifdef COMP_CPLUSPLUS
}
#endif
#endif