From be1474277937a2f8234396e89a3f0776795e48f5 Mon Sep 17 00:00:00 2001 From: minux Date: Mon, 24 Sep 2018 00:02:32 -0400 Subject: [PATCH] fix typo --- misc/asm_syntax.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/asm_syntax.txt b/misc/asm_syntax.txt index 17ec18e..ec66fec 100644 --- a/misc/asm_syntax.txt +++ b/misc/asm_syntax.txt @@ -25,8 +25,8 @@ label: is a label. single digit decimal numbers can be used as "local" labels, which are referenced with Nf and Nb: - jmp 1f Jump back to the closest 1: label - jmp 1b Jump forward to the closest 1: label + jmp 1b Jump back to the closest 1: label + jmp 1f Jump forward to the closest 1: label multiple words can be entered on one line, separated by semi-colon.