1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef DEF_V86THREAD_CLASS_H
#define DEF_V86THREAD_CLASS_H
#include <TaskManager/Thread.class.h>
struct v86_function_t {
u16int size;
u8int data[];
};
struct v86_regs_t {
u16int ax, bx, cx, dx, di, si;
u16int cs, ds, es, fs, gs, ss;
u16int ip, sp;
} __attribute__((packed));
struct v86_retval_t {
v86_regs_t *regs;
bool finished;
};
#define V86_STACKSIZE 1024
#define EFLAGS_IF 0x200
#define EFLAGS_VM 0x20000
#define VALID_FLAGS 0xDFF
class V86Thread : public Thread {
private:
V86Thread();
V86Thread(V86Thread&);
v86_retval_t* m_ret;
bool m_if, m_continueOnIret; //V86 IF flag
void setup();
public:
V86Thread(v86_function_t* entry, v86_retval_t* ret);
V86Thread(u8int int_no, v86_retval_t* ret);
bool handleV86GPF(registers_t *regs);
void handleException(registers_t *regs, int no);
};
#endif
|