Search found 342 matches

by Bobbi
Tue May 30, 2017 1:19 pm
Forum: Collecting and History
Topic: Vic weather station
Replies: 13
Views: 9299

Re: Vic weather station

The company still exists (www.vaisala.com)
And it seems there is a user manual for this product (https://novalynx.com/manuals/vaisala-haws-manual.pdf).
I guess it must have actually been released. Pretty rare though, I would imagine!
by Bobbi
Mon May 08, 2017 5:23 pm
Forum: Other Systems
Topic: PET Wifi Modem
Replies: 2
Views: 1854

Re: PET Wifi Modem

How different is the PET user port to VIC-20? I wonder if the WiModem would work or if it needs some pins changed around to work on the PET ...
by Bobbi
Wed May 03, 2017 2:22 pm
Forum: Games
Topic: Yoho - Scott Adams interpreter
Replies: 75
Views: 36432

Re: Yoho - Scott Adams interpreter

I have been enjoying Yoho very much. Finally I can save my position easily when playing on real hardware (without a C2N datasette.) It is also much easier to instruct other people in the household how to run this on a real VIC-20, than the strange dance I had to do to load cartridge images into RAM,...
by Bobbi
Wed May 03, 2017 1:59 pm
Forum: Hardware and Tech
Topic: Combining my Vics to make a good one?
Replies: 18
Views: 5555

Re: Combining my Vics to make a good one?

Yes the doc you linked to is very useful indeed!
by Bobbi
Wed May 03, 2017 8:37 am
Forum: Hardware and Tech
Topic: Combining my Vics to make a good one?
Replies: 18
Views: 5555

Re: Combining my Vics to make a good one?

VIC (2) sounds like a dying capacitor in the reset circuit. I have one that does not reset on power up but it works great if I use the reset button on my 32K RAM expander (Dorktronic.)
by Bobbi
Wed Apr 26, 2017 2:02 pm
Forum: Games
Topic: Yoho - Scott Adams interpreter
Replies: 75
Views: 36432

Re: Yoho - Scott Adams interpreter

Thank you :)
by Bobbi
Tue Apr 25, 2017 12:19 pm
Forum: Games
Topic: Yoho - Scott Adams interpreter
Replies: 75
Views: 36432

Re: Yoho - Scott Adams interpreter

Thank you for bringing this thread back to life. I would love the d64 files too if anyone has them!
by Bobbi
Sat Apr 22, 2017 4:25 pm
Forum: Programming
Topic: Updated BASIC and KERNAL disassembly
Replies: 31
Views: 9153

Re: Updated BASIC and KERNAL disassembly

Thank you --- I have some reading for the weekend now!!
by Bobbi
Sat Apr 22, 2017 1:04 pm
Forum: Programming
Topic: Updated BASIC and KERNAL disassembly
Replies: 31
Views: 9153

Re: Updated BASIC and KERNAL disassembly

Thank you so much for this!

I refer to your annotated disassembly quite a bit!!

Has anyone ever done this for the C64 ROMs? I am guessing they are not that different, but it would be interesting to compare and account for the differences.
by Bobbi
Wed Apr 12, 2017 6:13 pm
Forum: General Topics
Topic: An Intoduction to Basic...
Replies: 9
Views: 1830

Re: An Intoduction to Basic...

Thank you so much - I really enjoyed rediscovering those programs again after all these years!
by Bobbi
Fri Apr 07, 2017 7:37 am
Forum: Programming
Topic: How to determine if a file exists or not?
Replies: 4
Views: 1526

Re: How to determine if a file exists or not?

Thanks Mike. Glad I asked - not sure I would have come up with that solution on my own!!
by Bobbi
Thu Apr 06, 2017 6:11 pm
Forum: Programming
Topic: How to determine if a file exists or not?
Replies: 4
Views: 1526

Re: How to determine if a file exists or not?

However this doesn't distinguish between zero-length file and a file that truly does not exist. How to do that?
by Bobbi
Thu Apr 06, 2017 5:36 pm
Forum: Programming
Topic: How to determine if a file exists or not?
Replies: 4
Views: 1526

Re: How to determine if a file exists or not?

I think I answered my own question. I should look at the value of ST. The '64' bit is end-of-file.

Code: Select all

10 OPEN2,8,2,"DOESNTEXIST,S,R"
20 GET#2,A$
30 IF (ST AND 64) <> 0 THEN GOSUB 1000
40 CLOSE 2
50 END
1000 PRINT "DOESN'T EXIST"
1010 RETURN
by Bobbi
Thu Apr 06, 2017 5:34 pm
Forum: Programming
Topic: How to determine if a file exists or not?
Replies: 4
Views: 1526

How to determine if a file exists or not?

I am wondering what is the correct way to determine if a file on disk exists or not under the VIC-20 kernal / Commodore DOS. If I do the following in BASIC: 10 OPEN2,8,2,"DOESNTEXIST,S,R" 20 GET#2,A$ 30 PRINTASC(A$) 40 CLOSE2 It prints 199. Is that some magic value meaning end-of-file? The...
by Bobbi
Thu Apr 06, 2017 6:36 am
Forum: Programming
Topic: V-FORTH - Forth-83 for the VIC
Replies: 281
Views: 73291

Re: V-FORTH - Forth-83 for the VIC

For what it is worth, the little VICScript language I made last year has a primitive line editor which can be used to edit PETSCII SEQ files. Programs are loaded from plain text SEQ files. These files can be created in any text editor or word processor, so you are not stuck with my dreadful line edi...