Search found 16 matches

by the777
Tue Aug 22, 2023 6:59 pm
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

Re: is it possible to use redefined characters with this program?

its ok, thank you, i managed to do it
by the777
Tue Aug 22, 2023 7:14 am
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

Re: is it possible to use redefined characters with this program?

just a quick other question. how would i use this program in multicolor mode? ive had a look at this site: https://www.atarimagazines.com/compute/issue36/037_Programming_Multicolor_Characters_On_The_VIC.php and this program: 10 PRINT "{CLEAR}" 100 POKE36869, 255 105 POKE36879, 61 110 FORI ...
by the777
Mon Aug 21, 2023 10:13 am
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

Re: is it possible to use redefined characters with this program?

Mike wrote:Here we go: (download)

[...]
thank you. that works, great!
by the777
Mon Aug 21, 2023 3:13 am
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

Re: is it possible to use redefined characters with this program?

chysn wrote: Sun Aug 20, 2023 9:05 pm
the777 wrote: Sun Aug 20, 2023 8:32 pm ok, thank you. i may need a little help with that though....
Sure, I should have some time tomorrow to help out, for now I have to get to bed. But basically, it boils down to setting the 36869 register properly.
are you about?
by the777
Sun Aug 20, 2023 8:32 pm
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

Re: is it possible to use redefined characters with this program?

chysn wrote:[...]

You're using 7168 (and up) for two different things. Relocate either your character set or your screen memory.
ok, thank you. i may need a little help with that though....
by the777
Sun Aug 20, 2023 8:19 pm
Forum: Programming
Topic: is it possible to use redefined characters with this program?
Replies: 11
Views: 2024

is it possible to use redefined characters with this program?

this program makes the screen bigger. https://techtinkering.com/articles/changing-screen-dimensions-on-the-commodore-vic-20/ 10 rem demonstrate a 27x33 screen 20 rem lawrence woodman, nov 2019 30 print "{clr}" 100 rem lower top of basic to $1c00 110 poke 55,0:poke 56,28:poke 51,0:poke 52,2...
by the777
Wed Feb 24, 2021 6:15 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

done it! i just re defined the character as 010101,etc and then used the correct code. it was 19 for an 's' ? weird....
by the777
Wed Feb 24, 2021 5:45 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

no, doesnt work unfortunately. i tried 62 which comes out as purple (getting better). maybe i have to define a new character using 01,01,etc?

.......just tried that and im still getting garbage. no black...

thanks for all your help btw...
by the777
Wed Feb 24, 2021 5:18 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

ok, so what number do i use? ive tried 0-255 and none of them are black, i dont think
by the777
Tue Feb 23, 2021 8:06 pm
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

ok, so i got it working by deleting line 110. the problem now is that the sprite clears a green line down the screen.
i guess i may have to use a black box sprite to do this?
by the777
Tue Feb 23, 2021 7:50 pm
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

OK, I see. So, yes, every time you run your program, the loop at line 110 will reset the whole character set back to the ROM characters. That's where the custom > character is being set back to its ROM counterpart. The code at 1000 is not executed during a RUN of this code, which may be at least on...
by the777
Tue Feb 23, 2021 11:41 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

1000, goto 1000.


sorry, add this line.


20 data 255,255,255,255,255,255,255,255
by the777
Tue Feb 23, 2021 11:31 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

the '>' characters should be blocks but they just disappear back to '>' s
by the777
Tue Feb 23, 2021 11:14 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

10 print"[clear}" 100 poke36869, 255 104 poke38400,0 105 poke7680,160 106 print">>>>>>" 110 fori = 7168to7679 : pokei, peek(i + 2560 0): next 130 fori = 7176to7191 150 reada : pokei, a : next 154 x = 7690 : c = 307 20 155 pokex, 1 : pokex + c, 10 : pokex + 1, 2 : pokex + c + 1, ...
by the777
Tue Feb 23, 2021 10:33 am
Forum: Programming
Topic: is there a way to use reverse characters in multicolor mode?
Replies: 18
Views: 910

Re: is there a way to use reverse characters in multicolor mode?

that wouldnt give me black with my setup. my border color (black) is the desired background color