Multitasking
Re:Multitasking
you notice that before iret these 5 variables are pushed so declare a c function having 5 parameters;
and simply call this function using call _print
Code: Select all
void print(unsigned x1,unsigned x2...)
{
//print them
}
To write an OS you need 2 minds one for coding and other for debugging.
Re:Multitasking
Oh I forgot take care of order
get the order from intel manual
::)
get the order from intel manual
::)
To write an OS you need 2 minds one for coding and other for debugging.