When I perform a BLOAD in direct mode, I get the ending address of the event (example: Loading from $01:A000 to $02,A580)
How do I get the End bank and address in BASIC? I'm assuming it's a PEEK. I just don't know where to look
Search found 8 matches
- Sun Oct 13, 2024 9:19 pm
- Forum: X16 Software Support
- Topic: BLOAD Question
- Replies: 1
- Views: 262
- Sat Jul 13, 2024 7:47 am
- Forum: CX16 General Chat
- Topic: X16 SD-card image "launch title" software
- Replies: 33
- Views: 406764
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...
- Sun May 12, 2024 2:02 am
- Forum: Guides and Tutorials
- Topic: Count your RAM banks
- Replies: 35
- Views: 15051
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.
- Fri May 10, 2024 7:01 pm
- Forum: Guides and Tutorials
- Topic: Count your RAM banks
- Replies: 35
- Views: 15051
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...
- Thu Jan 25, 2024 3:49 am
- Forum: CX16 General Chat
- Topic: What PC case are you using?
- Replies: 32
- Views: 14303
- Wed Jan 24, 2024 11:54 pm
- Forum: CX16 General Chat
- Topic: What PC case are you using?
- Replies: 32
- Views: 14303
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...
- Sat Jan 13, 2024 9:42 pm
- Forum: Graphics Apps
- Topic: Petdraw X 2.0
- Replies: 6
- Views: 52238
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
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
- Sat Dec 30, 2023 6:12 am
- Forum: Graphics Apps
- Topic: Petdraw X 2.0
- Replies: 6
- Views: 52238
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.