Search found 305 matches

by Kananga
Tue Dec 04, 2012 1:30 pm
Forum: Games
Topic: New Release: Doom
Replies: 328
Views: 95987

Good work, Nice! :)
by Kananga
Wed Nov 28, 2012 2:54 pm
Forum: General Topics
Topic: VIC-20 "Warm" reset?
Replies: 19
Views: 5982

On some tape drives, there is an extra all metal ground cable hanging lose. I remember a guy taking that cable and dragging it over the user port until his c64 was reset. :lol: Yes, that's what I used too! Not that I dragged it over all pins of the user port, but I just hit the reset pin with the c...
by Kananga
Wed Nov 28, 2012 2:42 pm
Forum: Hardware and Tech
Topic: How much RAM can the VIC address?
Replies: 7
Views: 1114

The problem is that the programs that run in such huge memory, must be specifically written for them . Unless you use the RAM as a RAM disk for switching in parts of your program or data when needed. That way you could write a program that runs on original hardware (albeit slower) and benefit from ...
by Kananga
Mon Nov 26, 2012 2:41 pm
Forum: Programming
Topic: A Small Machine Language Routine
Replies: 9
Views: 1413

I disabled the process with a 37166, 128. What is that for? I've never heard of it. Normally before you alter the interrupts you do a SEI and after you are done you do a CLI. You can always disable interrupts at its source - one of the VIAs. That's why you can also disable NMIs. 37166 is the IER (i...
by Kananga
Sat Nov 10, 2012 1:09 pm
Forum: General Topics
Topic: If you could have changed one thing about the VIC...?
Replies: 90
Views: 35263

Are my eyes deceiving me or do you manage to mix the colours to get new shades? I'd like to download that program! Is it available somewhere? I was trying to mix the colors by switching between two colorsets on every frame, but it it only looks good on the picture. In reality the screen is flickeri...
by Kananga
Fri Nov 09, 2012 1:26 pm
Forum: General Topics
Topic: If you could have changed one thing about the VIC...?
Replies: 90
Views: 35263

Kweepa wrote:3. A grey in the palette (maybe the C64 palette?)
The Vic-20 is "your friendly color computer", therefore it offers the rainbow colors red-orange-yellow-green-cyan-blue-purple in dark and bright. See here.

I would not change that. :)
by Kananga
Fri Nov 09, 2012 1:08 pm
Forum: Hardware and Tech
Topic: Multi-Joystick Interface
Replies: 12
Views: 5838

@Jeff: Bomberman would be great. Unfortunately it is probably slightly more effort than the simple game I wrote for the demo. @Pedro: Combat looks nice and doable for the Vic-20. Something similar to the plane fight exists for the VIC and was one of my favourite games back then (Of course, the secon...
by Kananga
Fri Nov 09, 2012 12:37 pm
Forum: Hardware and Tech
Topic: Internet Connectivity with Comet64+VIC-20? (IT WORKS!!!)
Replies: 20
Views: 10165

Basically, the 2400 baud limitation is the kernal, 38k speed comes from software bit-banging the user port. I've seen this done on the 64 so I assume the same could be done on the Vic. As with the IEC-port, Commodore intended to use the shift register of the 6522 for transmission. Unfortunately, th...
by Kananga
Sat Nov 03, 2012 11:18 am
Forum: Emulation and Cross Development
Topic: Favorite Tools?
Replies: 9
Views: 2720

I use Eclipse+WUDSN IDE and ca65/ld65 for ASM cross-development.

According to their homepage, WUSDN IDE now also supports running ca65 directly, but I did not check it yet, because I use GNU make to run the assembler&linker. WUDSN IDE also supports DASM & XASM.

Edit: typo.
by Kananga
Thu Nov 01, 2012 3:50 pm
Forum: General Topics
Topic: Why VIC-20 and not C64?
Replies: 34
Views: 5726

I don't know about this Mary Beth Kraus, but the Vic-20 was my first computer and for almost a decade the only one.
by Kananga
Thu Nov 01, 2012 3:45 pm
Forum: Hardware and Tech
Topic: Multi-Joystick Interface
Replies: 12
Views: 5838

Witzo wrote:Reminds me of a friend who made an eight-joystick box just like yours for the Amiga, back in about 1990.
The 8-player-box works for the Amiga too. There is another cable with a plug for the printer port of the Amiga...
by Kananga
Thu Nov 01, 2012 10:52 am
Forum: Hardware and Tech
Topic: Multi-Joystick Interface
Replies: 12
Views: 5838

Here is a short video from the meeting. Unfortunately, the video is a bit shaky. I did not film myself, but I also lack a steady hand ;)
by Kananga
Thu Nov 01, 2012 10:45 am
Forum: Programming
Topic: How to "call" an ASM program from a BASIC program?
Replies: 6
Views: 1161

1) How did you know to chose 11 for "LE"? Or how did you know the only 12 memory positions would be taken up? That (11) should be the size of your example program. 2) Is there a Data Maker that you might recommend? There should be one on zimmers.net, but I usually go with buzbards method ...
by Kananga
Thu Nov 01, 2012 10:35 am
Forum: General Topics
Topic: SD Device of choice?
Replies: 58
Views: 6800

Wilson wrote:edit: I should note that you can relocate SJLoad to $0400, but that doesn't solve programs that use 35K of expansion RAM. ;)
Is there really a program for the Vic-20 that needs 35K RAM? :shock:
by Kananga
Wed Oct 31, 2012 1:39 pm
Forum: Programming
Topic: How to "call" an ASM program from a BASIC program?
Replies: 6
Views: 1161

In BASIC you write something like: 10 SY=828:LE=11 20 FORI=0TOLE 30 READ A 40 POKE SY+I, A 50 NEXT 60 SYS 828 70 DATA <here come the bytes from 828 to 839 in your case> For a small program like in your example you could just PEEK the values for line 70 from memory after loading the prg, but for bigg...