Answer the question
In order to leave comments, you need to log in
Busy loop - what kind of cycle is this?
According to the meaning, I understand that this is an endless cycle (active cycle). I can be wrong. In Habré, this word is used without translation. Help me understand the meaning.
.text
.globl start
.code16
start:
jmp start
Answer the question
In order to leave comments, you need to log in
Yes, this is a loop that constantly checks for some condition. Constantly spends processor time checking conditions, and therefore busy.
Something like
while(status != DONE) {
Sleep(500);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question