Cartridge "no sound" issue

Modding and Technical Issues

Moderator: Moderators

Post Reply
cater
Vic 20 Newbie
Posts: 5
Joined: Fri Dec 18, 2020 2:24 pm
Location: Italy

Cartridge "no sound" issue

Post by cater »

I use to play with my VIC 20 3/4 times a year and, recently, i discovered that some of my game cartridge now doesn't make any sound.
But some do.
So, as example, Vic Avenger or Slot are completely muted, while Cosmic Cruncher, Gorf and others play they regular "soundtrack".

I've just also bought a Penultimate+ Cartridge and here's same story: Pac Man no sound while Ms Pac Man have sound! Tetris no sound, Pole Position have sound... etc.

Not a TV or cable issue, i suppose, nor single Cartridge fault (otherwise Penultimate+ should have been working seamlessly)... where is the problem? What should i do?
User avatar
Noizer
Vic 20 Devotee
Posts: 297
Joined: Tue May 15, 2018 12:00 pm
Location: Europa

Re: Cartridge "no sound" issue

Post by Noizer »

Check with another vic
Valid rule today as earlier: 1 Byte = 8 Bits
-._/classes instead of masses\_.-
User avatar
chysn
Vic 20 Scientist
Posts: 1205
Joined: Tue Oct 22, 2019 12:36 pm
Website: http://www.beigemaze.com
Location: Michigan, USA
Occupation: Software Dev Manager

Re: Cartridge "no sound" issue

Post by chysn »

It's possible that just one of the sound registers is out, and it seems like some cartridges work because they use different sound registers.

It would be instructive to write a BASIC program that gates each sound register and sweeps through its frequencies, so see if this is the case.

If one of the registers isn't playing, it doesn't necessarily mean that the VIC chip is faulty. It could be one of those transceiver chips going to one or more address lines of the VIC chip.

I think that the starting point is, you need to know exactly what's working and what's not with some good old-fashioned POKEing.
VIC-20 Projects: wAx Assembler, TRBo: Turtle RescueBot, Helix Colony, Sub Med, Trolley Problem, Dungeon of Dance, ZEPTOPOLIS, MIDI KERNAL, The Archivist, Ed for Prophet-5

WIP: MIDIcast BASIC extension

he/him/his
Vic20-Ian
Vic 20 Scientist
Posts: 1214
Joined: Sun Aug 24, 2008 1:58 pm

Re: Cartridge "no sound" issue

Post by Vic20-Ian »

cater wrote: Fri Dec 18, 2020 2:45 pm I use to play with my VIC 20 3/4 times a year and, recently, i discovered that some of my game cartridge now doesn't make any sound.
But some do.
So, as example, Vic Avenger or Slot are completely muted, while Cosmic Cruncher, Gorf and others play they regular "soundtrack".

I've just also bought a Penultimate+ Cartridge and here's same story: Pac Man no sound while Ms Pac Man have sound! Tetris no sound, Pole Position have sound... etc.

Not a TV or cable issue, i suppose, nor single Cartridge fault (otherwise Penultimate+ should have been working seamlessly)... where is the problem? What should i do?

Try: (Don't type the bracketed text description)

Poke 36878,15
Poke 36874,200 (low range tone)
Poke 36874,0
Poke 36875,200 (medium range tone)
Poke 36875,0
Poke 36876,200 (high range tone)
Poke 36876,0
Poke 36877,200 (Noise sound)
Poke 36877,0

If one of those tones does not work it is probably a faulty chip in your Vic20
Vic20-Ian

The best things in life are Vic-20

Upgrade all new gadgets and mobiles to 3583 Bytes Free today! Ready
cater
Vic 20 Newbie
Posts: 5
Joined: Fri Dec 18, 2020 2:24 pm
Location: Italy

Re: Cartridge "no sound" issue

Post by cater »

Vic20-Ian wrote: Sat Dec 19, 2020 10:38 am Try: (Don't type the bracketed text description)

Poke 36878,15
Poke 36874,200 (low range tone)
Poke 36874,0
Poke 36875,200 (medium range tone)
Poke 36875,0
Poke 36876,200 (high range tone)
Poke 36876,0
Poke 36877,200 (Noise sound)
Poke 36877,0

If one of those tones does not work it is probably a faulty chip in your Vic20
Hi, thanks for the tip, i tried all pokes and i can hear all sounds so probably it's not a faulty chip.
Maybe some some cartridge slot connector partially damaged? Or... what else?
User avatar
chysn
Vic 20 Scientist
Posts: 1205
Joined: Tue Oct 22, 2019 12:36 pm
Website: http://www.beigemaze.com
Location: Michigan, USA
Occupation: Software Dev Manager

Re: Cartridge "no sound" issue

Post by chysn »

cater wrote: Wed Dec 23, 2020 3:42 am Maybe some some cartridge slot connector partially damaged? Or... what else?
Let's make sure all the volume register bits are getting set. With a sound audible do

Code: Select all

POKE 36878,8
POKE 36878,4
POKE 36878,2
POKE 36878,1
Can you hear all of those? You may need to crank your volume for 2 and 1, but can you hear them?
VIC-20 Projects: wAx Assembler, TRBo: Turtle RescueBot, Helix Colony, Sub Med, Trolley Problem, Dungeon of Dance, ZEPTOPOLIS, MIDI KERNAL, The Archivist, Ed for Prophet-5

WIP: MIDIcast BASIC extension

he/him/his
cater
Vic 20 Newbie
Posts: 5
Joined: Fri Dec 18, 2020 2:24 pm
Location: Italy

Re: Cartridge "no sound" issue

Post by cater »

chysn wrote: Wed Dec 23, 2020 5:55 pm Can you hear all of those? You may need to crank your volume for 2 and 1, but can you hear them?
Yes i can hear all bits.

As told i can't hear sound from some cartridge and from some games in Penultimate+; one of them is Avenger, and both original version and Penultimate+ version are muted (so not a specific cartridge problem).
Post Reply