Anklon
Anklon

Reputation: 638

What does " LOOP $ " means ?

In an assembly example I find this : enter image description here

There is no label named " $ " . What does this " LOOP $ " ? where is the starting of this loop ? please explain . Thanks in advance .

Upvotes: 1

Views: 341

Answers (2)

Amadan
Amadan

Reputation: 198364

$ is the address the current instruction starts at: LOOP $ is thus an empty loop of CX repetitions.

Upvotes: 5

i486
i486

Reputation: 6563

Not 100% sure but probably this is equivalent to:

L3:    LOOP L3

In other words, small delay from loop 0xB000..0

Upvotes: 2

Related Questions