Search found 7 matches

by Screech
Sat Jul 13, 2024 7:47 am
Forum: CX16 General Chat
Topic: X16 SD-card image "launch title" software
Replies: 33
Views: 404507

Re: X16 SD-card image "launch title" software

I noticed some minor bugs in the labyrinth.prg game in the launch title software. I have a version where I've fixed them all and made a few quality of life enhancements. Note that I haven't fixed any of the errors that would occur if you run it on a Commodore 64. https://github.com/ariz3388/labyrint...
by Screech
Sun May 12, 2024 2:02 am
Forum: How-To
Topic: Count your RAM banks
Replies: 35
Views: 14783

Re: Count your RAM banks

Thanks for that update. I looked for about an hour and couldn't find how to read the Acculumator from BASIC. I knew it was a zero page location but couldn't find it.
by Screech
Fri May 10, 2024 7:01 pm
Forum: How-To
Topic: Count your RAM banks
Replies: 35
Views: 14783

Re: Count your RAM banks

On the off chance someone is looking to do this in BASIC: 10 BC=0:I=0 15 BANK I 20 IF PEEK($A000)=160 THEN GOTO 40 30 BC=BC+1:I=I+1:GOTO 15 40 PRINT"TOTAL BANKS:";BC 50 PRINT"TOTAL HI-RAM:";(BC*8);"K" It's not the most elegant way, and if you're planning on using that m...
by Screech
Thu Jan 25, 2024 3:49 am
Forum: CX16 General Chat
Topic: What PC case are you using?
Replies: 32
Views: 13939

Re: What PC case are you using?

mortarm wrote: Thu Jan 25, 2024 3:03 am You want your case to look like a card sorter? :?
LOL!! I fixed it. I don't know where that link came from. Although it would be kind of cool if I could get something like that working....
by Screech
Wed Jan 24, 2024 11:54 pm
Forum: CX16 General Chat
Topic: What PC case are you using?
Replies: 32
Views: 13939

Re: What PC case are you using?

I really really really want one that reminds me of the old horizontal pc models. Since I won't use the expansion slots right away, I would love this look and feel. If I can't find a way to make it work, I'll get the official case. https://upload.wikimedia.org/wikipedia/commons/d/d8/Amiga_A1000_IMG_4...
by Screech
Sat Jan 13, 2024 9:42 pm
Forum: Graphics Apps
Topic: Petdraw X 2.0
Replies: 6
Views: 52154

Re: Petdraw X 2.0

Cool thanks everyone!

I'm making a few basic projects but have also started on my first assembly code project. This app saves me lots of time and knowing how to load the files is perfect
by Screech
Sat Dec 30, 2023 6:12 am
Forum: Graphics Apps
Topic: Petdraw X 2.0
Replies: 6
Views: 52154

Re: Petdraw X 2.0

Nice little adaptation. I never saw a command to exit and return to BASIC. Is there one? Also, do I need to do anything special with the save files other than bvload them? Thanks.