Fix task_init

I confused what was in ecx with what was in ebx. Swapping them fixed it
This commit is contained in:
pjht 2019-05-23 09:44:07 -05:00
parent 204fec4407
commit f513ee93a2

View File

@ -56,14 +56,10 @@ mov ds, ax
mov es, ax mov es, ax
mov fs, ax mov fs, ax
mov gs, ax mov gs, ax
mov eax, ecx
push 0x23 push 0x23
push ebx
pushf
pop eax
or eax, 0x200
push eax push eax
pushf
push 0x1B push 0x1B
push ecx push ebx
iret iret