Search found 4670 matches

by Mike
Sun Feb 24, 2013 2:38 am
Forum: Programming
Topic: Jiffy and ML
Replies: 6
Views: 1758

The subroutine mentioned in the posting below should do the trick. :mrgreen: http://sleepingelephant.com/ipw-web/bulletin/bb/viewtopic.php?t=676&start=17 If you want to implement something like a clock, this would however always add the processing time between the delays into the calculation, so...
by Mike
Sat Feb 23, 2013 1:58 pm
Forum: Programming
Topic: MG Text Edit
Replies: 15
Views: 6580

I just tried the SPLASH file from your Spidey vs. Doc Ock game. It loads fine without issues. Most of the white colour 'background' is actually drawn from foreground colour, with multi-colour enabled. These cells change to display vertical stripes in hires mode. So far, expected behaviour. If this i...
by Mike
Sat Feb 23, 2013 1:41 pm
Forum: Programming
Topic: MG Text Edit
Replies: 15
Views: 6580

It is most probably an attribute cell with multi-colour data that changed into hires when you overtyped it with a character. As I wrote in the OP, the attribute cells are tiles of 8x16 (hires) pixels, i.e. the area of 2x2 (small) characters is always affected when the colour RAM needs to be changed....
by Mike
Thu Feb 21, 2013 2:40 pm
Forum: Programming
Topic: Spidey vs Doc Ock
Replies: 39
Views: 13226

Nice! 8) Yes, awesome splash screen! Awesome... I love splash screens! I love them too ... :mrgreen:: https://dateipfa.de/.Public/denial/images/minigrafik/spider-man.png ( download ) After you have started a program with a boot loader created from ' makeboot.prg ' in the MG batch suite, MINIGRAFIK ...
by Mike
Sat Feb 16, 2013 4:40 pm
Forum: General Topics
Topic: Gaming like it's 1983...
Replies: 2
Views: 848

Ghislain got the Comet64 to work on the VIC-20 in general with a suite of programs detailed in the thread ' Internet Connectivity with Comet64+VIC-20? (IT WORKS!!!) '. Three years ago, there had been a demonstration of a VIC-20 posting on Twitter that even got broadcast coverage. See the thread ' VI...
by Mike
Tue Feb 12, 2013 6:14 pm
Forum: Hardware and Tech
Topic: Alternative SD2IEC 5v power source
Replies: 15
Views: 3910

eslapion wrote:- Video port
Pin #1 supplies an unstabilized voltage of +6 VDC from the rectified 9 VAC, which may be loaded with a maximum current of 10 mA.
by Mike
Mon Feb 11, 2013 4:25 pm
Forum: Programming
Topic: Hires Graphics
Replies: 111
Views: 88712

Just a small remark about this section: [...] lda $10fe sta $900e [...] The original code in MINIGRAFIK and in its executable pictures does a slightly more elaborate: LDA $900E AND #$0F ORA $10FE STA $900E MINIGRAFIK saves the contents of VIC register $900E (auxiliary colour and volume) with the bot...
by Mike
Mon Feb 11, 2013 2:29 pm
Forum: General Topics
Topic: Color Flickers
Replies: 8
Views: 1715

Unless your VIC-20 has been modded to output S-Video, you'd only have to connect composite video (yellow cord) and audio (white cord) to your TV set. Please check that the yellow cord connects to pin 4 of your DIN plug and that the white cord connects to pin 3. Here's how they are arranged when you ...
by Mike
Sun Feb 10, 2013 5:33 am
Forum: General Topics
Topic: Revision 2013 Invitation / Website out
Replies: 6
Views: 1262

This is a - small - issue I have with the demoscene in general. One of several - small - issues indeed. But I am not going to argue here. Either way: I will be attending the party and have this run on my VIC+Mega Cart. Whoever wants to see it/try it out is invited - don't forget to bring beer ;-) T...
by Mike
Sun Feb 10, 2013 5:10 am
Forum: General Topics
Topic: SQL experience needed
Replies: 12
Views: 1959

I also keep my fingers crossed. It's about time. In the 'International VIC' section a guest (Sedeinvenia) found a way to spam around. :evil:
by Mike
Sun Feb 10, 2013 5:03 am
Forum: Emulation and Cross Development
Topic: Minigrafik GIMP Plugin Development
Replies: 26
Views: 10286

Here I have another MG picture to test your GIMP plugin with: a Currywurst dish. ;)

Image
(download)

Greetings,

Michael
by Mike
Wed Feb 06, 2013 3:38 pm
Forum: Programming
Topic: DO .. LOOP in BASIC V2
Replies: 12
Views: 2116

No, you're mixing up expressions and statements. To clarify, most (imperative) programming languages make a difference between statements and expressions : A statement is some instruction or command which is intended to be executed by the language, e.g. PRINT, GOTO. In that sense, the LET statement ...
by Mike
Wed Feb 06, 2013 12:36 pm
Forum: Programming
Topic: DO .. LOOP in BASIC V2
Replies: 12
Views: 2116

Witzo wrote:How does this work?

Code: Select all

P=ST=0
This statement is not interpreted as double assignment in BASIC V2, rather the result of the Boolean expression ST=0 (either -1 if true, or 0 if false) is assigned to P.
by Mike
Mon Feb 04, 2013 12:27 pm
Forum: General Topics
Topic: What are the largest programs ever made for the Vic?
Replies: 21
Views: 3077

Do I understand correctly that originally, the Z-code interpreter required 35k of RAM expansion (3k RAM expansion + 32k RAM in BLK 1,2,3,5) but now will work correctly with on a standard 32k RAM expansion? There are actually two different Z-code interpreters being talked about: TNT's implementation...
by Mike
Mon Feb 04, 2013 11:38 am
Forum: General Topics
Topic: What are the largest programs ever made for the Vic?
Replies: 21
Views: 3077

Shouldn't the DOS Wedge be "invisible" in RAM? The FE3 DOS Wedge is copied from the firmware ROM to the address range $0400 .. $0FFF, which is then write protected by FE3, and thus not available for other programs. trying to turn the DOS wedge OFF freezes the VIC, but only with full RAM c...