Thanks for catching that funny error. Reminds me of hearing about an early electronic device translating "compiled code" into "software excretions" in a technical document.
PLOT $FFF0 (x,y) with vpoke?
Re: PLOT $FFF0 (x,y) with vpoke?
Re: PLOT $FFF0 (x,y) with vpoke?
Basload (Basic) only knows goto or gosub as jumps.
if I set the emulator from x16 to "-mhz 24" becomes basic quickly too.
this is the very good demo in x16-basic , it's super well made :
viewtopic.php?t=7317
greeting
if I set the emulator from x16 to "-mhz 24" becomes basic quickly too.
this is the very good demo in x16-basic , it's super well made :
viewtopic.php?t=7317
greeting
Last edited by funkheld on Mon Apr 08, 2024 9:22 pm, edited 5 times in total.
Re: PLOT $FFF0 (x,y) with vpoke?
---------------------------------
Prog8, MadPascal, C, etc.. should all be relatively fast as they are compiled.. Likely even a relatively naive bit of code in those should be >75% as fast as hand-optimized assembly? this is ok > 75%
--------------------------------
you can also bring asm-inline there in MadPascal and Prog8 ,that's fine :
ASM
lda #10
sta 712
END;
greeting
Prog8, MadPascal, C, etc.. should all be relatively fast as they are compiled.. Likely even a relatively naive bit of code in those should be >75% as fast as hand-optimized assembly? this is ok > 75%
--------------------------------
you can also bring asm-inline there in MadPascal and Prog8 ,that's fine :
ASM
lda #10
sta 712
END;
greeting
- ahenry3068
- Posts: 1135
- Joined: Tue Apr 04, 2023 9:57 pm
Re: PLOT $FFF0 (x,y) with vpoke?
There's a photo somewhere on the Net of the Food Court at the Olympics in China. Most of the Food booth's had Chinese and English Banner's. The photo was centered on One Particular Food outlet who's English language banner read "Translator Server Error"
- ahenry3068
- Posts: 1135
- Joined: Tue Apr 04, 2023 9:57 pm
Re: PLOT $FFF0 (x,y) with vpoke?
Thanks for the compliment Funhheld.funkheld wrote: ↑Mon Apr 08, 2024 8:57 pm Basload (Basic) only knows goto or gosub as jumps.
if I set the emulator from x16 to "-mhz 24" becomes basic quickly too.
this is the very good demo in x16-basic , it's super well made :
viewtopic.php?t=7317
greeting