aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/patches
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2022-07-31 09:34:36 -0400
committerGitHub <noreply@github.com>2022-07-31 09:34:36 -0400
commit9bab967313317f392b962df3cd1ba200155e10e4 (patch)
tree890e651910d05d29845ce1207700de487b2da986 /patches
parent6955f2c067f4d36b30219931cf13832ebad6a3c4 (diff)
parentdaf0a99f94e8d9ebc1efa3fcda841078a2b2bec3 (diff)
Merge pull request #101 from DerTee/064_builtins_overflow_clarification
064_builtins: clarify @addWithOverflow explanation
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/064_builtins.patch8
1 files changed, 5 insertions, 3 deletions
diff --git a/patches/patches/064_builtins.patch b/patches/patches/064_builtins.patch
index 644128b..8b5ea0a 100644
--- a/patches/patches/064_builtins.patch
+++ b/patches/patches/064_builtins.patch
@@ -1,4 +1,6 @@
72c72
-< const tupni: u8 = @bitReverse(input);
----
-> const tupni: u8 = @bitReverse(u8, input);
+- const expected_result: u8 = ???;
++ const expected_result: u8 = 0b00010010;
+88c88
+- const tupni: u8 = @bitReverse(input);
++ const tupni: u8 = @bitReverse(u8, input);