TV Terminal Demo question
MikeS
Posts: 131
I made my TV DAC with an RCA connector and successfully have the TV_Terminal_Demo.spin displaying on my old Commodore Color monitor. I pretty much understand all the lines of code except for the 13,13,0 after the TV Terminal Demo “ string in the following line of code:
title byte "TV Terminal Demo",13,13,0
I read about the DAT (data block) in the manual but wasn’t any help.
Thanks,
MikeS
title byte "TV Terminal Demo",13,13,0
I read about the DAT (data block) in the manual but wasn’t any help.
Thanks,
MikeS
Comments
The driver looks through the DAT block, printing each character to the screen until it reaches the termination character 0
Regards,
Coley
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
PropGFX - The home of the Hybrid Development System and PropGFX Lite
Ah, 13 is CR and 0 is end of Data Block, got it!
thanks for your quick reply
MikeS