Search found 23 matches
- Tue Dec 25, 2007 2:59 pm
- Forum: General Topics
- Topic: 1000 registered users
- Replies: 19
- Views: 7174
It means that we have 900 lurkers who have posted less than 13 times (check the membership list by post amount decending and see for yourself) :roll: But I guess 900 lurkers is still better than no one visiting :wink: Shem you're in the top 38 of 1000 posters though 8) I must admit, It's been over ...
- Fri Sep 29, 2006 1:25 pm
- Forum: Programming
- Topic: How to read bits from tape
- Replies: 22
- Views: 15502
As far as I know, the VIA chip can be programmed to trig interrupts on either raising or falling edges on the CA/CB pins. I think the normal tape transfer uses only one of them, but maybe it would be possible to toggle from raising to falling after detecting a rasing edge, and the other way round. T...
- Fri Sep 29, 2006 1:15 pm
- Forum: Programming
- Topic: ML optimizations
- Replies: 11
- Views: 5900
About saving instructions: I think it's OK to exclude unneeded loading instruction, if you just make a comment about it. Put the instruction there with a semicolon before and make a short note. This will make it easy to change it later if needed. ;LDX #0 - X is already zero here STX $9120 or BCS awa...
- Thu Sep 14, 2006 2:13 pm
- Forum: Programming
- Topic: Suggestion for a keyboard routine
- Replies: 6
- Views: 2764
I usually don't use the Kernal routines, but initially store apropriate value in $9121 to be able to read certain columns of the keyboard from $9120 (or is it the other way round? I always forget...) This is useful if you only need to check a limited number of keys, not the whole keyboard. This way ...
- Thu Sep 07, 2006 1:24 pm
- Forum: Programming
- Topic: Super Expander vs. plain 3k expansion
- Replies: 8
- Views: 4067
There were indeed some talented and experienced S.E. owners! Thanks for all the information! :D For using the whole 3k Expansion you can try : POKE643,255:SYS58232 So I must do this procedure before loading a program which expects a plain 3k expansion? It does not surprise me that the only thing add...
- Sun Sep 03, 2006 1:59 pm
- Forum: Programming
- Topic: Super Expander vs. plain 3k expansion
- Replies: 8
- Views: 4067
Super Expander vs. plain 3k expansion
Hi! Just got myself a Super Expander, and I wonder if there are any major differences comparing it to a plain 3k expansion. I mean, will all programs made for 3k expansion work with the super expander? And the other way round: will all programs that I make which work with my super expander work also...
- Sat Aug 26, 2006 12:35 am
- Forum: Hardware and Tech
- Topic: No V-sync on dark screens
- Replies: 1
- Views: 1492
No V-sync on dark screens
Hi! I use both an old two-prong vic and a newer cost reduced unit, with the same RF-adapter to a TV set. Sometimes, when the screen is set to black color, it starts rolling, and there's no whay to make it stable by adjusting the TV. The V-sync signal just seems to be missing! Having the problem with...
- Sun Aug 20, 2006 3:49 pm
- Forum: Programming
- Topic: S.D.S. & O.L.V.A. - new raster tricks
- Replies: 5
- Views: 2641
I found out that scrolling by only one line is too slow for most applications anyway. But what about 3 lines, or 5? =) However, it's encouraging to realize that there are still things to discover. These tricks are really very simple, you don't even have to have a stable raster routine to make it wo...
- Thu Aug 10, 2006 9:19 am
- Forum: Programming
- Topic: S.D.S. & O.L.V.A. - new raster tricks
- Replies: 5
- Views: 2641
It must have been discovered quite recently (during the last couple of years or so) and/or kept secret by the discoverers, because I've seen a lot of programs obviously not using anyting but standard vertical scrolling. Even software made later than 2000. Do you know the name of a demo using this? A...
- Mon Aug 07, 2006 1:32 pm
- Forum: Programming
- Topic: S.D.S. & O.L.V.A. - new raster tricks
- Replies: 5
- Views: 2641
S.D.S. & O.L.V.A. - new raster tricks
During the last months I've been exploring the VIC-I chip a bit, and more or less by accident I've found no less than two different ways to scroll the screen vertically by one line, instead of two lines. After searching the Internet for information on known raster tricks on the VIC-20, not finding a...
- Wed Aug 02, 2006 3:02 pm
- Forum: General Topics
- Topic: Why would anyone want to own a VIC 20???
- Replies: 51
- Views: 38814
The paradox about the C64 story is that its success was heavily depending on the fact that is wasn't updated during its lifetime. Its function remained exactly the same, which made it possible (and neccessary) to release software available for all commodore owners, not just those who had the latest ...
- Wed Aug 02, 2006 2:12 pm
- Forum: Hardware and Tech
- Topic: Older 9V VIC Power Supplies
- Replies: 35
- Views: 16353
Does all functions, like sound, floppy drive, tape (!!) etc work? I'm afraid I haven't tried tape, nor a real 1541, but 64HDD works (x1541 interface). Also sound and everything on the computer itself works. I have one original power supply with DIN contact, that kind with a power switch and a "...
- Tue Aug 01, 2006 2:30 pm
- Forum: Hardware and Tech
- Topic: Older 9V VIC Power Supplies
- Replies: 35
- Views: 16353
The kind of adapter used for later VICs, and the C64 has 4 pins, two 9v~ pins, and two +5v/GND pins. I just made an adapter from 7-pole DIN to those japanese phono contacts commonly used to plug in auxiliary sound sources to stereo hi-fi systems (female.) Found out which pins on the DIN contact to u...
- Tue Aug 01, 2006 2:13 pm
- Forum: General Topics
- Topic: Why would anyone want to own a VIC 20???
- Replies: 51
- Views: 38814
The VIC-20 wasn't my first computer (a C64 was). But ever since I heard about the machine I've been curious about it. I even bought one from a class mate in highscool for approx $10 (100 SEK, in 1994-95), but he didn't gave me a power supply or an RF-modulator, so I couldn't use it until just recent...
- Sun Jul 30, 2006 3:22 pm
- Forum: Programming
- Topic: Convert binary to decimal, fast!
- Replies: 0
- Views: 1671
Convert binary to decimal, fast!
The decimal mode of the 6502 seems so rarely used that people have almost forgotten that it even exists. (As far as I know, no part of the VIC's operating system uses it.) But there's a quick and memory efficient way to convert large binary numbers to BCD using it. Just roll out bit by bit from the ...