Removed an unnecessary jmp instruction

This commit is contained in:
Ivan Cordero 2018-10-07 17:16:13 +02:00 committed by GitHub
parent 301019e838
commit 007296bab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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:
..... .....