This commit is contained in:
Ivan Cordero 2023-09-30 21:42:02 -03:00 committed by GitHub
commit c97a29aa87
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
je ax_is_four ; do something (by jumping to that label)
jmp else ; else, do another thing
jmp endif ; finally, resume the normal flow
ax_is_four:
.....