diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-14 20:46:25 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-01-14 20:46:25 +0100 |
commit | 0eb4531e86daf0361d575feb512530b7685772f6 (patch) | |
tree | ad0fc823d9e1e840d7e26d52dba102b23d413f55 | |
parent | 941cc50b5038c74fe44910731d13f1f7f10a2e7d (diff) | |
download | blog-main.tar.gz blog-main.zip |
-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(); |