From dae34fe2db8827de776396c979c2bf79681edb9a Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 6 Nov 2024 08:50:56 +0100 Subject: IMP: A set of WiP for the process scheduler. Signed-off-by: Amlal El Mahrouss --- dev/ZBAKit/BootKit/BootKit.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dev/ZBAKit/BootKit/BootKit.h') diff --git a/dev/ZBAKit/BootKit/BootKit.h b/dev/ZBAKit/BootKit/BootKit.h index 6448fcd1..1d312d41 100644 --- a/dev/ZBAKit/BootKit/BootKit.h +++ b/dev/ZBAKit/BootKit/BootKit.h @@ -162,12 +162,12 @@ namespace Boot * Common processor instructions. */ - EXTERN_C void Out8(UInt16 port, UInt8 value); - EXTERN_C void Out16(UInt16 port, UInt16 value); - EXTERN_C void Out32(UInt16 port, UInt32 value); - EXTERN_C UInt8 In8(UInt16 port); + EXTERN_C void rt_out8(UInt16 port, UInt8 value); + EXTERN_C void rt_out16(UInt16 port, UInt16 value); + EXTERN_C void rt_out32(UInt16 port, UInt32 value); + EXTERN_C UInt8 rt_in8(UInt16 port); EXTERN_C UInt16 In16(UInt16 port); - EXTERN_C UInt32 In32(UInt16 port); + EXTERN_C UInt32 rt_in32(UInt16 port); EXTERN_C void rt_hlt(); EXTERN_C void rt_cli(); -- cgit v1.2.3