summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/rem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/inc/rem.h')
-rw-r--r--src/loader/inc/rem.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/loader/inc/rem.h b/src/loader/inc/rem.h
new file mode 100644
index 0000000..61eb30a
--- /dev/null
+++ b/src/loader/inc/rem.h
@@ -0,0 +1,29 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+// Real mode emulation - Implementation by Napalm (see rem.asm)
+
+#ifndef REM_H
+#define REM_H
+
+#include <def.h>
+
+#define EFLAGS_CF (1 << 0) // Carry flag
+#define EFLAGS_ZF (1 << 6) // Zero flag
+
+struct rem_regs {
+ u16 gs;
+ u16 fs;
+ u16 es;
+ u16 ds;
+ u32 eflags;
+ u32 ebp;
+ u32 edi;
+ u32 esi;
+ u32 edx;
+ u32 ecx;
+ u32 ebx;
+ u32 eax;
+} PACKED;
+
+void rem_int(u8 int_num, struct rem_regs *out_regs, struct rem_regs *in_regs);
+
+#endif