* Added NOP instruction * Added program demonstrating the usage of the "call" and "ret" instructions * Added program demonstrating the usafe of the "nop" instruction
7 lines
60 B
Text
7 lines
60 B
Text
mov eax, 0
|
|
|
|
loop:
|
|
nop
|
|
inc eax
|
|
cmp eax, 1000000
|
|
jl loop
|