Search found 396 matches

by Leeeeee
Fri Jul 12, 2013 7:31 am
Forum: Hardware and Tech
Topic: Pause device
Replies: 2
Views: 715

Is there any long term risk in doing this?
No.

Lee.
by Leeeeee
Tue May 14, 2013 11:35 am
Forum: Programming
Topic: CBM BASIC 2.0 using STR$
Replies: 12
Views: 1884

How about ..

Code: Select all

3000 b$=mid$("0123456789ABCDEF",nn+1,1):return
Lee.
by Leeeeee
Mon Apr 01, 2013 9:29 pm
Forum: Programming
Topic: 720p, 1080i and 1080p on the VIC
Replies: 2
Views: 1355

Modes 2 and 3 loop one too many times.

Lee.
by Leeeeee
Sat Mar 23, 2013 10:35 pm
Forum: Programming
Topic: The limitations of Austro compiler
Replies: 13
Views: 2724

There's a few things I still can't tease from the Austro code and having the instructions would probably help a great deal. Does anyone know where I may find them? Also, I think I've found where the dongle code has been patched out but I can't find an unpatched version to see what was actually chang...
by Leeeeee
Mon Mar 11, 2013 7:43 pm
Forum: Programming
Topic: The limitations of Austro compiler
Replies: 13
Views: 2724

Austro builds a variable list but it codes variables as an index into that list so the list does not need to be searched every time a variable is used, as it does in BASIC.

Lee.
by Leeeeee
Thu Mar 07, 2013 9:35 pm
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

How do you make these into one line prgs? petcat mucks it up. How I do it is I work on the multi line version in Vice and save that. I then hex edit the saved .prg file to remove the line links and replace them with colons. Lastly I fix the one remaining line link by hand and save the edited .prg f...
by Leeeeee
Thu Mar 07, 2013 3:58 pm
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

The bomb logic can be fixed by changing the bomb code to.. C=(K=13ANDPEEK(O+1)=35ANDB>0):B=B+C:POKEO-C,32 The following single line version with the fixed bomb logic is available here . 0 X=0:Y=11:PRINT" L"L"B"B:FORI=1TO505:PRINTCHR$(32-3*(RND(1)<.3+L/44));:NEXT:FORA=-1TO0:O=7680...
by Leeeeee
Thu Mar 07, 2013 10:10 am
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

If you want to enter, please send the prg to Nigel Parker before the deadline,
It's Kweepa's program not mine. If Kweepa wants to enter the two line version I posted I have no objection.

Lee.
by Leeeeee
Thu Mar 07, 2013 9:25 am
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

Even using abbreviated keywords line 1 is about 120 characters too long to enter but yes you could lose that 0 from the end.

Lee.
by Leeeeee
Thu Mar 07, 2013 8:01 am
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

I've made Kweepa's program as a two liner available here . Here's the listing.. 0 X=0:Y=11:PRINT" L"L"B"B:FORI=1TO505:PRINTCHR$(32-3*(RND(1)<.3+L/44));:NEXT 1 FORA=-1TO0:O=7680+22*Y+X:POKEO,94:K=PEEK(197):X=X+(K=33ANDX>0ANDPEEK(O-1)=32)-(K=26ANDPEEK(O+1)=32):Y=Y+(K=52ANDY>0ANDPEE...
by Leeeeee
Wed Mar 06, 2013 1:57 pm
Forum: Programming
Topic: Commodore FREE One Liners competition.
Replies: 55
Views: 7771

I count six, but lines 1 through 4 can be turned onto one long FOR .. NEXT loop with line 5 tagged on the end.

Entering the thus modified very long second line may be a bit of a problem though.

Lee.
by Leeeeee
Wed Mar 06, 2013 9:07 am
Forum: Programming
Topic: The limitations of Austro compiler
Replies: 13
Views: 2724

Well some success but still a lot to do. Here's the one program, GreyGhost's Autobaun, that decompiles without stopping on something I've not figured out yet. First the original source code. 1 R$="{GRN}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POUND}{^POU...
by Leeeeee
Sat Mar 02, 2013 1:46 pm
Forum: Programming
Topic: The limitations of Austro compiler
Replies: 13
Views: 2724

Are there any Vic programs that are known to be Austro compiled?

I need some examples to work on to make a decompiler.

Lee.
by Leeeeee
Mon Nov 26, 2012 10:45 am
Forum: Programming
Topic: Basic "crunching" question.
Replies: 17
Views: 2116

Also by adding multiple command to one line, where are the savings derived? From the fact that you do not need to have a new line number, spaces, etc? Yes, four bytes are saved by not having another line number and line link. It says by abbreviating keywords, memory can be saved. Only where it allo...
by Leeeeee
Tue Jul 03, 2012 3:18 am
Forum: Hardware and Tech
Topic: Tuning a 1702 monitor
Replies: 3
Views: 1156

Rotating the deflection yoke will upset the convergence, which is a whole new level of frustration to put right, even when you know what you're doing.

Lee.