diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-06 08:50:56 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-11-06 08:50:56 +0100 |
| commit | dae34fe2db8827de776396c979c2bf79681edb9a (patch) | |
| tree | 3ef2d0bfab9883eef04f179ffb50157e5d6a59df /dev/ZBAKit/BootKit | |
| parent | 78a639520307fef30e43ee7e2f1db058c3caba8a (diff) | |
IMP: A set of WiP for the process scheduler.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZBAKit/BootKit')
| -rw-r--r-- | dev/ZBAKit/BootKit/BootKit.h | 10 |
1 files changed, 5 insertions, 5 deletions
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(); |
