06-18-2010, 12:36 PM
Strangely my proportional Print SUB from Tips section, with example, does not work anymore with the latest development version of ZXBC, because the address of text in b$ is returned incorrectly (in ROM).
It does not return the correct address and compiled program says "A Invalid argument" at the end.
Does not change anything.
comes with a "Undefined label '_test_b'." if used in SUBs
Code:
DIM b$ AS STRING
b$="test"
PRINT PEEK(Uinteger,@b$)+2
Code:
DIM b$ AS STRING
dim adr as uinteger
b$="test"
adr=PEEK(Uinteger,@b$)+2
print adr
Code:
adr=@b$