diff options
author | Marvin Borner | 2020-08-07 21:14:20 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-07 21:14:20 +0200 |
commit | 79f2fa136f26a0b87917336e089485712ee49bd6 (patch) | |
tree | ccf19f23e11191e6e71d89921913d4edb00a6042 /src/features/proc.asm | |
parent | 5e4374f938d259903fa21cb62b3f3b77b126198b (diff) |
Dual-tasking works.
I don't know why triple-tasking doesn't though...
Diffstat (limited to 'src/features/proc.asm')
-rw-r--r-- | src/features/proc.asm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/features/proc.asm b/src/features/proc.asm new file mode 100644 index 0000000..3d6bbc4 --- /dev/null +++ b/src/features/proc.asm @@ -0,0 +1,25 @@ +%define USER_CODE_SEGMENT 0x18 +%define USER_DATA_SEGMENT 0x20 +%define RING3_MASK 0b11 + +global proc_jump_userspace +extern _esp +extern _eip +proc_jump_userspace: + mov ax, USER_DATA_SEGMENT | RING3_MASK + mov ds, ax + mov es, ax + mov fs, ax + mov gs, ax + + mov eax, dword [_esp] + push USER_DATA_SEGMENT | RING3_MASK + push eax + pushf + + sti + + push USER_CODE_SEGMENT | RING3_MASK + push dword [_eip] + + iret |