You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/manual/cache/CatPgOpAssignment.wakka
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Operators that assign values to operands
3
3
4
4
The assignment operators perform an assignment to the first, or //left-hand side//, operand based on the value of the second, or //right-hand side//, operand. Most of the assignment operators are combination operators, in that they first perform a mathematical or bitwise operation on the two operands, then assign the result to the //left-hand side// operand.
Copy file name to clipboardExpand all lines: doc/manual/cache/CompilerOptasm.wakka
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Set assembler format for inline assembly under -gen gcc
13
13
14
14
- ##-gen gcc -asm intel##: FB inline assembly blocks must use FB's usual Intel syntax format. Under -gen gcc, fbc will try to translate it to gcc's format automatically. For example:
15
15
%%(freebasic)
16
-
dim a as integer = 1
16
+
dim a as long = 1
17
17
print a
18
18
asm
19
19
inc dword ptr [a]
@@ -23,7 +23,7 @@ print a
23
23
24
24
- ##-gen gcc -asm att##: FB inline assembly blocks must use [[https://gcc.gnu.org/onlinedocs/gcc/Using-Assembly-Language-with-C.html gcc's format]]. For example:
0 commit comments