mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
Removed an unnecessary jmp instruction
This commit is contained in:
parent
301019e838
commit
007296bab3
@ -37,7 +37,6 @@ Assembler jumps are defined by the *previous* instruction result. For example:
|
|||||||
cmp ax, 4 ; if ax = 4
|
cmp ax, 4 ; if ax = 4
|
||||||
je ax_is_four ; do something (by jumping to that label)
|
je ax_is_four ; do something (by jumping to that label)
|
||||||
jmp else ; else, do another thing
|
jmp else ; else, do another thing
|
||||||
jmp endif ; finally, resume the normal flow
|
|
||||||
|
|
||||||
ax_is_four:
|
ax_is_four:
|
||||||
.....
|
.....
|
||||||
|
Loading…
Reference in New Issue
Block a user