
by the way, google lists this site as not secure. any reason why?
Moderator: Moderators
You care to provide a link?20questions wrote:In the 8 bit guy's video, he [...]
You find the basics of this already in the VIC-20 User Guide and anyhow, this requires more than a program with just a handful of PRINT statements.[...] redefines a character and manages to move it on screen. How would i get this to happen on a stock vic 20?
Code: Select all
10 POKE55,0:POKE56,29:CLR:CO=30720
11 FORT=0TO15:READA:POKE7424+T,A:NEXT:POKE36869,255
12 X=0:Y=0
13 GETA$:AD=7680+22*Y+X:POKEAD,33:POKEAD+CO,0
14 IFA$="{UP}"ANDY>0THENPOKEAD,32:Y=Y-1
15 IFA$="{DOWN}"ANDY<22THENPOKEAD,32:Y=Y+1
16 IFA$="{LEFT}"ANDX>0THENPOKEAD,32:X=X-1
17 IFA$="{RIGHT}"ANDX<21THENPOKEAD,32:X=X+1
18 GOTO 13
19 DATA 0,0,0,0,0,0,0,0,60,126,255,255,255,255,126,60
If you mean Mike's listing, that works fine but only on an unexpanded or 3K expanded VIC. You should end up with a screen of blue squares and a black ball at the top left corner which can be moved with the keys you set up whilst typing it in. The listing can be pasted into VICE via the Edit menu as long as everything is shifted to lower case first - a good text editor should be able to do that easily enough - to remove the chances of a typo sneaking in.20questions wrote: ↑Sun Dec 29, 2019 2:48 pm all i get is a corrupted screen of blue lines. typed it in exactly as shown