From 007296bab32cc9e2ab272ec5c950b2b7b92537af Mon Sep 17 00:00:00 2001 From: Ivan Cordero <1525191+ivcoar@users.noreply.github.com> Date: Sun, 7 Oct 2018 17:16:13 +0200 Subject: [PATCH] Removed an unnecessary jmp instruction --- 05-bootsector-functions-strings/README.md | 1 - 1 file changed, 1 deletion(-) 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: .....