Search found 377 matches

by DragWx
Fri Mar 28, 2025 11:03 pm
Forum: CX16 Hardware Support
Topic: No Picture/video, no Audio, lights on
Replies: 5
Views: 704

Re: No Picture/video, no Audio, lights on

The VERA board (with the SD card slot and the video port) is responsible for the video, the PSG audio, and the SD card interface, so if it isn't working correctly (or maybe not seated properly?), none of that will work. You said your DAC socket (for the YM3012?) was bad, so that eliminates audio fro...
by DragWx
Thu Mar 27, 2025 4:58 am
Forum: CX16 General Chat
Topic: FAQ Update for Gen-2 aka "CX16GS" system
Replies: 69
Views: 26813

Re: FAQ Update for Gen-2 aka "CX16GS" system

Sorry if this was answered already, but there's been confirmation that the GS will have all 2MB of banked RAM available, right? I remember the original plan was that Gen 1 would be expandable up to 2MB but Gen 2 was going to be 512KB only.
by DragWx
Tue Mar 25, 2025 2:37 pm
Forum: CX16 General Chat
Topic: Case (3D Printed)
Replies: 19
Views: 3107

Re: Case (3D Printed)

That back view makes me think of Legos for some reason. :P It's pretty neat, but for my tastes personally, I really liked how the Apple IIgs looked, and I'd have loved to put my X16 into something similar, though I might be the only person. Maybe one of these days I'll formally figure out and sketch...
by DragWx
Tue Mar 25, 2025 3:50 am
Forum: CX16 General Chat
Topic: FAQ Update for Gen-2 aka "CX16GS" system
Replies: 69
Views: 26813

Re: FAQ Update for Gen-2 aka "CX16GS" system

Think about who the GS is for, and it makes sense why they'd remove the IEC port on it. It'll still be on the non-GS though, so just get that one if it has what you want.
by DragWx
Mon Mar 24, 2025 2:02 am
Forum: CX16 General Chat
Topic: Case (3D Printed)
Replies: 19
Views: 3107

Re: Case (3D Printed)

I really like how this looks, and also I like how your solution was just to have the keyboard slot into it (though it might be a wee too tall for me), because I don't know any other wedge designs that tried that. (I'm sure there were some, I'm just not aware of them) Is there enough structure to sit...
by DragWx
Sun Mar 23, 2025 10:44 pm
Forum: CX16 General Chat
Topic: Cases???
Replies: 12
Views: 4597

Re: Cases???

LED and motors staying permanently on makes me think the CPU isn't running, but I'm not an expert at repairing these. :P
by DragWx
Sat Mar 22, 2025 3:58 am
Forum: CX16 General Chat
Topic: Cases???
Replies: 12
Views: 4597

Re: Cases???

I have an old 1571 drive thats missing the top cover. Not sure if it works, but if it does, I could possibly remove the drive and controller board and maybe mount it in the case along with the MB since they both have exposed 5.25" bays Now I'm curious, is it possible to mount a 1541 or a 1571 ...
by DragWx
Thu Mar 20, 2025 8:36 pm
Forum: Libraries and Examples
Topic: Mouse enable and clear mouse pointer for X16 (cc65 example with inline asm)
Replies: 3
Views: 2816

Re: Mouse enable and clear mouse pointer for X16 (cc65 example with inline asm)

This issue from a year ago is related to the documentation not mentioning the cursor is sprite 0.
by DragWx
Thu Mar 20, 2025 6:15 pm
Forum: Libraries and Examples
Topic: Timing how long something takes
Replies: 13
Views: 14173

Re: Timing how long something takes

I am a little bit confused how you can know if L borrowed from H. The timer is constantly running for each instruction, so while you capture the high byte, the low byte is already "lost" (you lost the count by the amount of cycles it took to read from the high byte). When I think about it...
by DragWx
Thu Mar 20, 2025 3:26 am
Forum: Libraries and Examples
Topic: Timing how long something takes
Replies: 13
Views: 14173

Re: Timing how long something takes

It doesn't look like the VIA allows you to read the full 16-bit counter at once, so you'll always be at risk of a decrement occurring between reads. The only danger would be if L borrows from H while you're reading, but I think this can be mitigated: ; Read H and L as quickly as possible. lda V_T1_H...