Search found 322 matches

by matsondawson
Fri May 11, 2012 4:59 pm
Forum: Collecting and History
Topic: Minefield80 help needed
Replies: 4
Views: 1902

Minefield80 help needed

Can someone help Perseus get this working?
It's written for a 80 column PET, but has some vague instructions to convert it for a Vic20...

http://www.mdawson.net/files/minefield80.prg
http://www.mdawson.net/files/minefield8 ... ar_Apr.pdf
by matsondawson
Fri May 04, 2012 11:17 pm
Forum: Collecting and History
Topic: Gobble!
Replies: 8
Views: 2664

It's all fixed now. The joystick routine has errors in it, which I fixed and now it works as both joystick and keyboard which the original would not do. http://www.mdawson.net/vic20chrome/vic20.php?load=http://www.mdawson.net/files/gobble/gobble.prg Just problems with Zeros and Ohs, and you need to ...
by matsondawson
Fri May 04, 2012 5:08 pm
Forum: Collecting and History
Topic: Gobble!
Replies: 8
Views: 2664

http://www.mdawson.net/files/gobble/

I noticed the first error is because you put zeros instead of oh's in an OR.
The second was an incomplete line.
by matsondawson
Fri May 04, 2012 12:38 am
Forum: Collecting and History
Topic: Gobble!
Replies: 8
Views: 2664

Email it to me and I'll upload it to my website.

matsondawson@gmail.com
by matsondawson
Sun Apr 29, 2012 3:02 pm
Forum: Emulation and Cross Development
Topic: JS Vic20 update log
Replies: 14
Views: 4099

Yeh, nothing under IE9, even then IE9 doesn't support sound. Your best bet is latest Chrome, then Firefox (remember to turn off firebug if you have it installed). As for speed, I am slowly working on a faster version, I think I should be able to get at least a 5x speed up. What sort of laptop do you...
by matsondawson
Sat Apr 28, 2012 8:00 pm
Forum: Emulation and Cross Development
Topic: JS Vic20 update log
Replies: 14
Views: 4099

Lots of changes... * Added ***FULLSCREEN*** which is only supported on latest firefox and chrome. Thanks to whomever the vic20easterbunny is for that. * Removed hover menu system, now you have to click (I hate hovers) * Made a completely new debug screen which shows you VIC and VIA states (it's slow...
by matsondawson
Fri Apr 27, 2012 12:42 am
Forum: Programming
Topic: Pulse Sounds..
Replies: 8
Views: 2103

Here's the JS Vic20 link for those to lazy to download and vice it. http://www.mdawson.net/vic20chrome/vic20.php?load=http://www.mdawson.net/files/pacfollin.prg&machineType=ntsc Took me ages to figure out why it didnt' work in NTSC turned out to be the branch not taken interrupt ignoring feature...
by matsondawson
Sun Apr 22, 2012 6:14 pm
Forum: Programming
Topic: How many cycles per pixel should I expect for drawing lines?
Replies: 14
Views: 4455

So the plan I was going to use was an attempt at hardware assisted line drawing. By wiring (T1 ->) T2 -> shift register and other combinations you can use it as a bit shifter for the line (assuming you turn off interrupts). I think I was down to 17ish cycles a pixel ignoring setup. The thing is you ...
by matsondawson
Sun Apr 22, 2012 6:06 pm
Forum: Other Systems
Topic: Prince of Persia source code
Replies: 2
Views: 898

That's some really clean source.
Obviously a very good coder.
by matsondawson
Wed Mar 28, 2012 6:09 pm
Forum: International VIC
Topic: German Commodore video on Vimeo
Replies: 1
Views: 1986

Looked to be a lot of hand assembly involved.
Lots more jobs in those days I guess.
by matsondawson
Sun Mar 25, 2012 8:28 pm
Forum: Programming
Topic: Digitized sound + 2 spare channels possible?
Replies: 11
Views: 3795

Are you sure it's an 8 bit LSFR? That would have a maximum sequence of 255 values. In the VICE source it has a 1024 x 8 bit lookup (8192 bits), which suggests a 13bit LFSR. Not to say that vice is correct at all.
by matsondawson
Fri Mar 23, 2012 8:13 pm
Forum: Programming
Topic: Digitized sound + 2 spare channels possible?
Replies: 11
Views: 3795

I guess this all depends on whether the channels still generate a wave internally when they are off.
by matsondawson
Fri Mar 23, 2012 7:27 pm
Forum: Programming
Topic: Digitized sound + 2 spare channels possible?
Replies: 11
Views: 3795

Actually you may be able to get a little more precision doing DAC by... 1/ Assuming the four channels outputs when off sum to a relative value of 1.8 (4*0.45) once they reach the volume section, that would give us 0->27 in steps of 1.8 2/ Setting two channels 180 degrees out of phase then switching ...
by matsondawson
Fri Mar 23, 2012 5:21 pm
Forum: Programming
Topic: Digitized sound + 2 spare channels possible?
Replies: 11
Views: 3795

They are simply added. However, with high values of the volume register and two or more voices activated, clipping might occur . I wish I could up-vote that link! It explains why you can play analogue levels by changing the volume register. Namely because "The voltage for the 0 state when stop...
by matsondawson
Fri Mar 23, 2012 4:56 am
Forum: Programming
Topic: Digitized sound + 2 spare channels possible?
Replies: 11
Views: 3795

Whoops, for some reason I was thinking each channel had its own volume. what operation does the vic use for mixing channels?