summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBAKit/BootKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZBAKit/BootKit')
-rw-r--r--dev/ZBAKit/BootKit/BootKit.h10
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();