**Describe the bug** Pointers used directly in an arithmetic operation fail to compile properly. ***Doesn't work:*** ```asm mult *$memoryLocationA,64 -> $tmp ``` ***Works:*** ```asm mult $variable,64 -> $tmp ```