Search found 21 matches

by totodilespy
Sat Oct 05, 2024 3:04 am
Forum: Productivity Apps
Topic: cx16os
Replies: 1
Views: 306

cx16os

I've shared this on the Discord, but figured I should share it here as well. cx16os is a OS layer for the Commander X16. It's unix-esque, and features a shell, preemptive multitasking, and redirection and more. I walk through more here: https://youtu.be/BwCtG6uicNY?si=-hD1jlHqjbvZBmSJ The main disco...
by totodilespy
Sat May 18, 2024 5:26 am
Forum: CX16 General Chat
Topic: A plea to the dev team
Replies: 33
Views: 12160

Re: A plea to the dev team

I think you can pretty much ignore the 65816, at the very least. The X16 is always going to start up in emulation mode even if it's running on a 816, so you just need to avoid the rmb/smb/bbs/bbr instructions, which i have never used in my experience programming and werent on the original 6502 anywa...
by totodilespy
Fri May 17, 2024 5:53 pm
Forum: Games
Topic: RUMMY
Replies: 2
Views: 1439

Re: RUMMY

Thanks for the feedback! I'm glad you enjoyed playing. You should have been able to lay down that 5 of clubs, I'll try to see why that didn't work. The computer should have played the 5 of clubs itself, so there is probably something wrong with the routine to check if a match is valid. When I was pl...
by totodilespy
Fri May 17, 2024 4:28 am
Forum: Games
Topic: RUMMY
Replies: 2
Views: 1439

RUMMY

A version of Rummy for the X16. I built this using a lot of the same code as I used for solitaire, so the interface / controls are similar. CONTROLS: Left click to select cards Right click to unselect all cards Click the deck to draw from the deck Click a card in the discard pile to pick it up and a...
by totodilespy
Fri May 17, 2024 4:12 am
Forum: Games
Topic: SOLITAIRE
Replies: 8
Views: 2552

Re: SOLITAIRE

Thanks for the feedback. I added some controls to the start screen so it would be harder to miss :D
by totodilespy
Mon May 13, 2024 5:49 pm
Forum: Games
Topic: SOLITAIRE
Replies: 8
Views: 2552

SOLITAIRE

A version of solitaire for the x16! It's mostly petscii, but overwrites the last 4 chars to get filled round ends for the cards. Controls: Left-click to select/move cards Right-click to deselect if one is selected (clicking a blank area also does this) Escape starts a new game Source code: https://g...
by totodilespy
Mon May 06, 2024 1:14 am
Forum: Programming
Topic: Scripts to make sd card images on Windows
Replies: 1
Views: 1787

Scripts to make sd card images on Windows

Hello, I've been struggling with this for a while as my Win10 laptop doesn't support virtualization in the BIOS and so I can't use WSL. I finally figured out a combination of tools to create sd card images for use with the emulator to get more accurate behavior. There are three files in the zip fold...
by totodilespy
Fri Oct 20, 2023 6:09 pm
Forum: Programming
Topic: Translate BASIC sprite example to C (CC65) ?
Replies: 6
Views: 2213

Re: Translate BASIC sprite example to C (CC65) ?

vpoke() is the right C function. In cc65, the first argument is the data to poke and the second argument is the VRAM address to poke to. It is 32 bits in cc65, the lower 17 which matter. the highest bit corresponds to BASIC's VPOKE's first argument. So BASIC: VPOKE $1,$FC10,$00 is equivalent to C: v...
by totodilespy
Mon Sep 04, 2023 1:53 am
Forum: Games
Topic: Quack
Replies: 1
Views: 3245

Quack

https://i.imgur.com/iHvqvPm.png Quack is a Dr. Mario-like puzzle game. Controls (Keyboard joystick): Menu: Start - progress through menus B - Back through menus Arrows - Navigate menus In Game: A / Up - Rotate pieces Left / Right - Move pieces Start - Pause / Unpause Try the game online here: 3737 ...
by totodilespy
Tue Apr 11, 2023 8:02 pm
Forum: Works In-Progress Discussion
Topic: Game of CRAPS in BASIC
Replies: 24
Views: 206721

Re: GAME OF CRAPS IN BASIC

Simple but well made. Was fun to play, and very impressive for being done in BASIC. If i could suggest one thing, I'd maybe let the user roll again without having to enter their bet if they neither crap out or win the roll.