From ae97b31240689c0a9b1cd08202ba2a268d3839a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Ron=C4=8Devi=C4=87?= Date: Thu, 17 Oct 2024 17:04:25 +0200 Subject: [PATCH] Remove erroneous "Notes" from `SUB` and `SUBI` instructions --- src/fuel-vm/instruction-set.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fuel-vm/instruction-set.md b/src/fuel-vm/instruction-set.md index 47bb3d8c..a2df0e76 100644 --- a/src/fuel-vm/instruction-set.md +++ b/src/fuel-vm/instruction-set.md @@ -669,7 +669,7 @@ Panic if: | Operation | ```$rA = $rB - $rC;``` | | Syntax | `sub $rA, $rB, $rC` | | Encoding | `0x00 rA rB rC -` | -| Notes | `$of` is assigned the overflow of the operation. | +| Notes | | Panic if: @@ -687,7 +687,7 @@ Panic if: | Operation | ```$rA = $rB - imm;``` | | Syntax | `subi $rA, $rB, imm` | | Encoding | `0x00 rA rB i i` | -| Notes | `$of` is assigned the overflow of the operation. | +| Notes | | Panic if: