Search found 69 matches

by DrVeryEvil
Wed Oct 21, 2015 4:32 am
Forum: Hardware and Tech
Topic: XU1541 on the cheap
Replies: 2
Views: 1007

Re: XU1541 on the cheap

Was there code already out there, or did you have to do that yourself?
by DrVeryEvil
Fri Oct 16, 2015 6:36 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

That VIC++ sounds really interesting. How is that project coming?
by DrVeryEvil
Wed Oct 14, 2015 5:21 pm
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

Wow, that will give something to chew on for a while. Lots of projects and ideas. It looks like you've been a little busy, from the date of that last article. Thanks for the pointer/link.
by DrVeryEvil
Wed Oct 14, 2015 4:49 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

I have been going through the code from C=Hacking #10 and trying to figure out why each time I start the raster interrupt, the boxes move. The boxes are stable when displayed, they just don't appear at the same raster line when started. ; 10 SYS4109 *=$1001 BYTE $0B, $10, $0A, $00, $9E, $34, $31, $3...
by DrVeryEvil
Thu Sep 17, 2015 9:16 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

I have also found an error, I think, in the refresh rate calculation that Marko does, in claims that Commodore does not meet the video standard of the time. Marko gives 261 as the number of raster lines drawn by the NTSC 6560, which does give quite a bit of error on the refresh rate. I believe he is...
by DrVeryEvil
Wed Sep 16, 2015 8:56 am
Forum: Hardware and Tech
Topic: VIC 20 Mods
Replies: 1
Views: 892

Re: VIC 20 Mods

This VIC 20 has had a lot of work done on it, maybe there's something not making a good connection somewhere. :?
by DrVeryEvil
Wed Sep 16, 2015 8:03 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

I see the bit instruction is of no use in this, because the value needs to be stored for the compare that comes later, and that makes the code take up more bytes. ldy #9 bit $24 1$ ldx $9004 txa bit $24 bit $24 ldx #21 dex bne *-1 cmp $9004 bcs *+2 dey bne 1$ I am still curious why the bit instructi...
by DrVeryEvil
Wed Sep 16, 2015 5:04 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Re: Stable Raster Interrupts

Would it be more efficient to syncronise to the high bit of $9003? This could be done with a simple BIT$9003, instead of actually reading the register.
by DrVeryEvil
Tue Sep 15, 2015 7:16 am
Forum: Programming
Topic: Stable Raster Interrupts
Replies: 34
Views: 14659

Stable Raster Interrupts

I am looking at some code on how to make a stable raster interrupt on the VIC 20, Commodore Hacker #10, and was wondering if anyone can tell me the purpose of the BIT $24 in the code. Is that just a way to burn some cycles? :?
by DrVeryEvil
Mon Sep 14, 2015 5:32 am
Forum: Hardware and Tech
Topic: Another Vic20 newbie issue
Replies: 12
Views: 1444

Re: Another Vic20 newbie issue

If I might make a suggestion on removing bad chips, take a pair a small, pointy nose wire cutters and clip the pins off the chip. Then all you need to do is pull the pins out with a pair of needle nose pliars while you melt the solder with your solder pencil. Solder wick does a good job of cleaning ...
by DrVeryEvil
Mon Sep 14, 2015 5:14 am
Forum: Hardware and Tech
Topic: How to fix my Vic 20
Replies: 12
Views: 1669

Re: How to fix my Vic 20

I would think the pins that read just under 4 volts are fine, but pin 33 that reads .01 is definitely a problem. Of course there may be more than one chip that's bad, but this is a good start, and hopefully fixes it. I am in the US and would get another 6502 from www.jameco.com. While you are at it,...
by DrVeryEvil
Wed Sep 09, 2015 4:52 am
Forum: Hardware and Tech
Topic: How to fix my Vic 20
Replies: 12
Views: 1669

Re: How to fix my Vic 20

If you don't have a logic probe, then you can make a simple tester with a couple pieces of wire, a 470 ohm resister, and an LED. If you are not that technical, then you will have to use your meter. A jumper wire with clips on the ends will come in handy to connect your ground lead of the meter to th...
by DrVeryEvil
Tue Sep 08, 2015 5:23 am
Forum: Hardware and Tech
Topic: How to fix my Vic 20
Replies: 12
Views: 1669

Re: How to fix my Vic 20

Pin 7 of that 74LS04 should be ground. If that 14 volts is what you are reading, then I would think you have a bad voltage regulator. From what I have read in some other posts, this may have been caused by that big capacitor going bad. See if you get that same voltage reading across that big capacit...
by DrVeryEvil
Mon Sep 07, 2015 7:17 am
Forum: Hardware and Tech
Topic: How to fix my Vic 20
Replies: 12
Views: 1669

Re: How to fix my Vic 20

To start with, you need to make sure there are no blown fuses. My late model VIC has a fuse inside, near the on/off switch. Take a volt meter and check for 5 volts on pin 14 of the 74LS04.
by DrVeryEvil
Sun Sep 06, 2015 9:27 am
Forum: Hardware and Tech
Topic: VIC 20 Mods
Replies: 1
Views: 892

VIC 20 Mods

First off, I have a VIC with the CR board in it, I think. Its the later model with two 2K memory chips in it. In preparation for putting a 65816 into my VIC, I have connected the phase 2 clock from the 6560, pin 36, to PHI2 input of the 6502, pin 37. I have also taken the phase 1 clock from the 6560...