From 704a348f70b586bc9c18fc961e5e28cf7c102837 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 25 Nov 2024 00:21:02 +0100 Subject: [PATCH] README.md: remove note about missing precedence --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 1e86a38..e3259a4 100644 --- a/README.md +++ b/README.md @@ -87,15 +87,13 @@ Simple math expressions and label references can be used within the argument: add_it: add -At this time, there is no precedence in expressions. Use parentheses to indicate precedence. - Supported arithmetic operations include addition (+), subtraction (-), multiplication (*), division (/), and modulo (%). There is also support for bit-shifts (<<, >>), bitwise AND (&), OR (|), XOR (^). All arithmetic is performed with arbitrary precision integers. The result of calculations must fit into 256 bits in order to be valid as a PUSH argument. For sized push, the result -must fit into the declared push size. Negative results are not allowed right now. +must fit into the declared push size. Negative results are not allowed. ### Expression Macros