diff options
-rw-r--r-- | content/2024-12-20-xpost-juicebox-asm/index.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/content/2024-12-20-xpost-juicebox-asm/index.md b/content/2024-12-20-xpost-juicebox-asm/index.md index 15c16f4..b5a0c61 100644 --- a/content/2024-12-20-xpost-juicebox-asm/index.md +++ b/content/2024-12-20-xpost-juicebox-asm/index.md @@ -187,9 +187,10 @@ _displacement_ (disp32) forming the relative jump. </div> The second case where the label is first used and then bound later, is not -really more complex, but one has to reverse the steps. The code listing below -gives an example, demonstrating forwards jumps by validating two input -arguments to be not equal to 0 and returning of one check fails. +really more complex, but one has to postpone the computation of the displacement +until the label is bound. The code listing below gives an example, demonstrating +forwards jumps by validating two input arguments to be not equal to 0 and +returning if one check fails. ```rust,linenos let mut asm = Asm::new(); |