Search found 48 matches

by NormalLuser
Sat Jun 14, 2025 2:11 am
Forum: General Discussions
Topic: Video card question
Replies: 18
Views: 4614

Re: Video card question

If you really want it to be 'compatible' with something else search for videos and pages on building an Apple II compatible with modern discrete components. Super neat resources for that out there.

But since you are already doing a BE6502, the 'Worlds Worst Videocard' is a pretty good place to ...
by NormalLuser
Tue Sep 24, 2024 3:00 am
Forum: Programming
Topic: Breadboard 6502 Bad Apple!! With the Worlds Worst Video Card
Replies: 2
Views: 2005

Re: Breadboard 6502 Bad Apple!! With the Worlds Worst Video

AndrewP wrote:
I don't have any suggestions just thought I'd say that's both very cool and very impressive!
Thanks so much!
by NormalLuser
Sat Sep 21, 2024 5:20 pm
Forum: Programming
Topic: Breadboard 6502 Bad Apple!! With the Worlds Worst Video Card
Replies: 2
Views: 2005

Breadboard 6502 Bad Apple!! With the Worlds Worst Video Card

Thanks everyone here at 6502.org for helping both directly and with your past posts!
Without you all I would NOT have been able to do this:

https://www.youtube.com/watch?v=0glEfLZCwmc

I'm working on a proper writeup with details but please take a look:
https://github.com/NormalLuser/Ben-Eater ...
by NormalLuser
Thu Feb 01, 2024 11:39 pm
Forum: Programming
Topic: How to deal with code that will be relocated?
Replies: 4
Views: 5926

Re: How to deal with code that will be relocated?

Thanks guys!
.rorg $1234 and .rend is exactly what I needed.
Don't know how I missed that in the vasm manual.
Worked great!
by NormalLuser
Wed Jan 31, 2024 11:59 pm
Forum: Programming
Topic: How to deal with code that will be relocated?
Replies: 4
Views: 5926

How to deal with code that will be relocated?

Hi all. I’m working on my Bad Apple! video decoder and have this version just about finished up.
One of the last things I wanted was a self contained ROM that boots right up to the demo.
The problem is that I have a little bit of self modifying code so I want to move some to RAM and I don't quite ...
by NormalLuser
Sun Jan 28, 2024 11:45 pm
Forum: Programming
Topic: Worlds Worst Videocard BadApple Demo. I want more FPS!
Replies: 58
Views: 31089

Re: Worlds Worst Videocard BadApple Demo. I want more FPS!

Great result! There's a couple of things you can cheaply do with your counts - both your skip counts and your repeat counts. One is to apply an offset, so 0-63 becomes 10-73 or any other range which happens to work best. Another is to apply scaling, so 0-63 becomes 0-126, or combine both so 10-73 ...
by NormalLuser
Sun Jan 28, 2024 11:39 pm
Forum: Programming
Topic: Worlds Worst Videocard BadApple Demo. I want more FPS!
Replies: 58
Views: 31089

Re: Worlds Worst Videocard BadApple Demo. I want more FPS!

Hey everyone!
An update on the progress I've made in my quest for FPS.
I just can't leave well enough alone and had to try to squeeze a little more performance out of this.
And I've finally found something useful to do on this project with basic self modifying code!
For whatever reason I really ...
by NormalLuser
Wed Jan 17, 2024 1:34 am
Forum: Programming
Topic: Worlds Worst Videocard BadApple Demo. I want more FPS!
Replies: 58
Views: 31089

Re: Worlds Worst Videocard BadApple Demo. I want more FPS!

Great result! There's a couple of things you can cheaply do with your counts - both your skip counts and your repeat counts. One is to apply an offset, so 0-63 becomes 10-73 or any other range which happens to work best. Another is to apply scaling, so 0-63 becomes 0-126, or combine both so 10-73 ...
by NormalLuser
Tue Jan 16, 2024 4:26 am
Forum: Programming
Topic: Worlds Worst Videocard BadApple Demo. I want more FPS!
Replies: 58
Views: 31089

Re: Worlds Worst Videocard BadApple Demo. I want more FPS!

53 Frames a second!
I have my new one byte encoder/decoder and am now pushing 53 frames a second with vsync off.
It has Run Length, Differential and Tri Pixel Encoding.
With Vsync the video plays almost perfectly in sync down to the second.
The one byte encoder has the average bytes per frame down ...
by NormalLuser
Wed Jan 03, 2024 11:55 pm
Forum: Programming
Topic: Worlds Worst Videocard BadApple Demo. I want more FPS!
Replies: 58
Views: 31089

Re: Worlds Worst Videocard BadApple Demo. I want more FPS!

Steamboat Willie demo on my 6502..
https://youtu.be/8Jy-tLoXLFw

I wanted something to show off a few changes I made but wanted something different than Bad Apple while doing this testing.
Well, I made some optimizations realizing that since I always encode skips for every frame and there are 28 ...
by NormalLuser
Sun Dec 31, 2023 12:30 am
Forum: Hardware
Topic: Basic text-mode VGA output circuit
Replies: 24
Views: 5457

Re: Basic text-mode VGA output circuit

Awsome project!
Have you considered using a FIFO like CD74HC40105 instead of registers? Edit.. You'd need to keep the parellel to serial register and put the Fifo in front using the Fifo Not Empty to decide to gate in another update.
You would still need to be mindful of sending updates too fast but ...
by NormalLuser
Sat Dec 23, 2023 5:42 pm
Forum: Hardware
Topic: Fastest possible SD card Read with a 6522 VIA?
Replies: 22
Views: 14552

Re: Fastest possible SD card Read with a 6522 VIA?


Once I think I can't take that further without a whole PIC or whatever in there if I still need more speed I should probably just move to Compact Flash?
http://forum.6502.org/viewtopic.php?f=4&t=2877

All my CF interfaces are bus-connected, ie, connect 6502's data bus directly to CF's data bus ...
by NormalLuser
Sat Dec 23, 2023 5:40 pm
Forum: Hardware
Topic: Fastest possible SD card Read with a 6522 VIA?
Replies: 22
Views: 14552

Re: Fastest possible SD card Read with a 6522 VIA?


What about an SPI EEPROM? Easier to setup and read and they stream really well.


I have thought about this. However I need 3 or 4 MegaBytes to store video and audio.
There are parallel chips that exist but with the shortage they seem to be hundreds of $$.
I can find some SPI chips but they are ...
by NormalLuser
Fri Dec 22, 2023 5:43 pm
Forum: Hardware
Topic: Fastest possible SD card Read with a 6522 VIA?
Replies: 22
Views: 14552

Re: Fastest possible SD card Read with a 6522 VIA?

I've had a custom circuit reading SD cards by SPI using a 4MHz clock to drive shift registers, and the card was happy with that. I have heard that some cards may require a slow clock speed during initialisation, but it may vary from card to card.

It's possible to use the VIA shift register to read ...
by NormalLuser
Fri Dec 22, 2023 4:51 pm
Forum: Hardware
Topic: Fastest possible SD card Read with a 6522 VIA?
Replies: 22
Views: 14552

Re: Fastest possible SD card Read with a 6522 VIA?

Once started the SD card will stream bits forever.
As long as you take into account a 10 byte CRC message every 512 bytes anyway.
Seems in this application the CRC message is superfluous. Any way to tell the SD card to not send it?


I know, it would be great.
From what I gather from a couple of ...