How can you forcibly change CS
and IP
both in assembly language ?
ORG
directive can be used to change the number of the IP
, but how do you change the CS
?
Basically I wan to implement multi-threading using assembly.
Many forums, including a question in stack overflow has said its impossible, but then how does C have multi-threading options even when it is made from assembly code ?