blob: 591bea6bce4403d6a8b54cf8534cf59100b0fa9c (
plain) (
blame)
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
|
#ifndef DEF_V86THREAD_CLASS_H
#define DEF_V86THREAD_CLASS_H
#include <TaskManager/Thread.class.h>
struct v86_retval_t {
registers_t *regs;
bool finished;
};
struct v86_function_t {
u16int size;
u8int data[];
};
#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; //V86 IF flag
static void runV86(V86Thread* t, u32int data, u32int ss, u32int cs);
public:
V86Thread(v86_function_t* entry, v86_retval_t* ret, u32int data);
bool handleV86GPF(registers_t *regs);
void handleException(registers_t *regs, int no);
};
#endif
|