Search results
How to convert hexadecimal characters back in MSX basic
Score: 180.24 %,
Type: Forum topic , Comments: 24 comments
L%=VAL("&H"+HEX$(PEEK(&HF673))+RIGHT$("0"+HEX$(PEEK(&HF672)),2)): PRINT HEX$(L%)
20 FOR M=&HC000 TO L%: PRINT HEX$(M): NEXT So, it can work only ...
Is there a way to concat/merge/join vars in MSX basic?
Score: 180.13 %,
Type: Forum topic , Comments: 5 comments
Is there a way to concat/merge/join vars in MSX basic?
Example:
A = 2
B = 3
I would like to know if there is a way I can get C to be 23 (C = AB)?
A=2: B=3: C=A*10+B
or
A=2: A=2: B=3: C=A*10+B
or
A=2: B=3: ...
