2020-03-26 05:13:19 +03:00
|
|
|
#ifndef __LIB__REAL_H__
|
|
|
|
#define __LIB__REAL_H__
|
2019-05-31 06:47:13 +03:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-06-02 00:34:24 +03:00
|
|
|
#define rm_seg(x) (unsigned short)(((int)x & 0xFFFF0) >> 4)
|
|
|
|
#define rm_off(x) (unsigned short)(((int)x & 0x0000F) >> 0)
|
|
|
|
|
2020-03-26 05:13:19 +03:00
|
|
|
#define rm_desegment(seg, off) (((uint32_t)(seg) << 4) + (uint32_t)(off))
|
|
|
|
|
2019-06-03 01:14:32 +03:00
|
|
|
#define EFLAGS_CF (1 << 0)
|
|
|
|
|
2019-05-31 06:47:13 +03:00
|
|
|
struct rm_regs {
|
2019-06-03 01:14:32 +03:00
|
|
|
uint32_t eflags;
|
2019-05-31 06:47:13 +03:00
|
|
|
uint32_t ebp;
|
|
|
|
uint32_t edi;
|
|
|
|
uint32_t esi;
|
|
|
|
uint32_t edx;
|
|
|
|
uint32_t ecx;
|
|
|
|
uint32_t ebx;
|
|
|
|
uint32_t eax;
|
|
|
|
};
|
|
|
|
|
|
|
|
void rm_int(uint8_t, struct rm_regs *, struct rm_regs *);
|
|
|
|
|
|
|
|
#endif
|