Search found 109 matches

by bjonte
Thu Apr 25, 2024 12:25 pm
Forum: Games
Topic: WIP: Bubble Bobble
Replies: 22
Views: 1044

Re: WIP: Bubble Bobble

The screenshot looks nice! This would be a very challenging project though. It kind of requires double buffering and it’s not the VIC’s strength because of the limited graphics memory.
by bjonte
Thu Apr 18, 2024 2:09 pm
Forum: Games
Topic: Prince of Persia
Replies: 53
Views: 5102

Re: Prince of Persia

This looks fantastic! The wall perspective suits the hardware and hides the wide pixels nicely. Good choice to use hires.
by bjonte
Sun Mar 17, 2024 3:32 pm
Forum: General Topics
Topic: modded VIC 20 kernals?
Replies: 14
Views: 1627

Re: modded VIC 20 kernals?

Merytsetesh wrote: Thu Mar 14, 2024 12:21 pm If I had one mod for the VIC KERNAL, it would be to amend the screen routines to take account of variable dimensions instead of relying on the hardcoded values... :P
Yeah, asking for the screen size returns hard coded values. It would have been nice if that was dynamic, but sadly too late.
by bjonte
Tue Oct 03, 2023 2:17 pm
Forum: Hardware and Tech
Topic: 40- and 80-column expansions
Replies: 7
Views: 2919

Re: 40- and 80-column expansions

I tried a couple of file browsers before I started making my own. I didn’t like the ones I tested because they didn’t feel intuitive to me. Lots of keys to remember or small inconveniences like for example CBM Command overwriting files without asking and using @: which triggers the dreadful 1541 bug...
by bjonte
Mon Oct 02, 2023 1:56 pm
Forum: Hardware and Tech
Topic: 40- and 80-column expansions
Replies: 7
Views: 2919

Re: 40- and 80-column expansions

What application did you have in mind? I’m working on a file manager application for the C128 and I started considering to port it to the VIC20 since it doesn’t have many such applications. The standard screen would of course work but it would be nice to make use of additional hardware as well. I’m...
by bjonte
Mon Oct 02, 2023 4:21 am
Forum: Hardware and Tech
Topic: 40- and 80-column expansions
Replies: 7
Views: 2919

Re: 40- and 80-column expansions

Thanks for the detailed response. So the only problem would be to ensure that the running program can fit in the RAM that isn’t blocked by cartridge ROM.
by bjonte
Sun Oct 01, 2023 7:08 am
Forum: Hardware and Tech
Topic: 40- and 80-column expansions
Replies: 7
Views: 2919

40- and 80-column expansions

Did the 40- or 80-column expansions provide an alternate kernal ROM to allow them to be used by BASIC programs without modifications? Or did some of them, or none?
by bjonte
Thu Aug 17, 2023 2:34 pm
Forum: Hardware and Tech
Topic: Missing Pixels on screen??
Replies: 8
Views: 3138

Re: Missing Pixels on screen??

All the pixels seems to be there. It’s just really blurry. The image quality isn’t great on an unmodded machine and a HDMI converter on top of that only can get worse.
by bjonte
Thu Aug 03, 2023 10:48 pm
Forum: Programming
Topic: Sprites in ML
Replies: 55
Views: 23583

Re: Sprites in ML

AndyH wrote: Mon Jul 31, 2023 3:31 pmI added a command that exports the sprite data as code instead of raw binary data. The code just draws the preshifted sprite with a series of lda/sta's.
Neat! So each frame of animation would have its own set of dedicated render code?
by bjonte
Sat Jun 17, 2023 10:10 pm
Forum: Hardware and Tech
Topic: Vic20 Startup sequence to main screen Display? (was: Help Cartridge with a startup SOUND)
Replies: 23
Views: 5202

Re: Vic20 Startup sequence to main screen Display? (was: Help Cartridge with a startup SOUND)

You seem to get as far as the VIC chip initialization since you have something displayed with the correct number of volumns and rows. If you type on the keyboard, does the screen change in any way as a response? You could try poking to change the border color or start a sound to see if only the disp...
by bjonte
Sat Jun 17, 2023 2:02 pm
Forum: Hardware and Tech
Topic: New penultimate-plus-2-cartridge
Replies: 57
Views: 13612

Re: New penultimate-plus-2-cartridge

Still no list of included games to be found?
by bjonte
Sat Jun 10, 2023 1:30 pm
Forum: General Topics
Topic: Suggestions, please!
Replies: 6
Views: 2316

Re: Suggestions, please!

Cheese and Onion should work on NTSC and is a cartridge game. H.E.R.O isn’t on cartridge, but has an attract mode. H3LP B0DG3 looks nice but I haven’t tried it. Super Monza also looks really nice.
by bjonte
Fri Jun 09, 2023 11:35 am
Forum: Hardware and Tech
Topic: New penultimate-plus-2-cartridge
Replies: 57
Views: 13612

Re: New penultimate-plus-2-cartridge

Is there a list of the actual included games somewhere public?
by bjonte
Sun Feb 26, 2023 2:43 pm
Forum: Programming
Topic: Is there sample VIC20 assembly doing wedges for BASIC?
Replies: 18
Views: 6610

Re: Is there sample VIC20 assembly doing wedges for BASIC?

Mike wrote: Sun Feb 26, 2023 10:11 am After a THEN, the next command is not called over $0308, rather the interpreter makes a direct, unvectored jump. This is done because THEN also accepts a line number, which is then jumped to if the IF .. THEN clause is true.
Ouch, how annoying.

Very helpful information! Thanks!
by bjonte
Sun Feb 26, 2023 8:54 am
Forum: Programming
Topic: Is there sample VIC20 assembly doing wedges for BASIC?
Replies: 18
Views: 6610

Re: Is there sample VIC20 assembly doing wedges for BASIC?

I happen to be interested in this topic as well right now. What’s the issue with IF, THEN that needs special handling?