diff --git a/05-bootsector-functions-strings/README.md b/05-bootsector-functions-strings/README.md index 0c57b81..625b382 100644 --- a/05-bootsector-functions-strings/README.md +++ b/05-bootsector-functions-strings/README.md @@ -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: .....