Forum
Print64 - Printable Version

+- Forum (https://www.boriel.com/forum)
+-- Forum: Compilers and Computer Languages (https://www.boriel.com/forum/forumdisplay.php?fid=12)
+--- Forum: ZX Basic Compiler (https://www.boriel.com/forum/forumdisplay.php?fid=11)
+---- Forum: Help & Support (https://www.boriel.com/forum/forumdisplay.php?fid=16)
+---- Thread: Print64 (/showthread.php?tid=643)



Print64 - ardentcrest - 02-28-2015

Need help to make this work with print 64.

This one, Jose I can not do myself. Smile

Code:
    if rowx=0 then print: printat64(14,2):print64(xx$;" "):goto NetJump1 : end if


    FOR ii = 0 TO rowx : print at 22,ii;chr$(peek (@MyLabel + ii)); : NEXT ii : print xx$;" "



Re: Print64 - boriel - 02-28-2015

ardentcrest Wrote:Need help to make this work with print 64.

This one, Jose I can not do myself. Smile

Code:
    if rowx=0 then print: printat64(14,2):print64(xx$;" "):goto NetJump1 : end if


    FOR ii = 0 TO rowx : print at 22,ii;chr$(peek (@MyLabel + ii)); : NEXT ii : print xx$;" "
You have a syntax error in the 1st line:
Code:
printat64(14,2):print64(xx$ + " ")
Replace the semicolon by a "+" since you're concatenating strings.