Search found 8 matches
- Wed Nov 06, 2024 9:09 pm
- Forum: CX16 General Chat
- Topic: What do we need for a "How to program the X16" book?
- Replies: 22
- Views: 1313
Re: What do we need for a "How to program the X16" book?
65816...no "c". Same thing. WDC has used the two names interchangeably over the years, although the actual chips have always been labeled W65C816 (or W6SC816S for the newer fully static version they've been selling the last 25 years or so). As far as I know the other manufacturers have al...
- Wed Sep 25, 2024 8:19 am
- Forum: CX16 General Chat
- Topic: Frustrations With These Forums
- Replies: 16
- Views: 1843
Re: Frustrations With These Forums
There really needs to be a single straightforward page on the main X16 site that just provides comprehensive instructions on how to update, with a single download containing all needed files (and an another copy of the instructions). There should be no need for anyone to dig through the forum or tra...
- Wed Sep 18, 2024 1:19 am
- Forum: Works In-Progress Discussion
- Topic: Another World (Out of this World) port for the CX16
- Replies: 11
- Views: 2312
Re: Another World (Out of this World) port for the CX16
I have the Apple IIGS port (which is in turn a port of the SNES version, both were done by the amazing Becky Heineman) and took a look at it, but it just has one giant file called OOTWSOUND (which takes up all of the second disk, LOL) which has no data fork, only a resource fork containing 85 items ...
- Tue Dec 12, 2023 2:44 am
- Forum: X16 Feature Requests
- Topic: network adapter / c compiler
- Replies: 13
- Views: 26560
Re: network adapter / c compiler
Because you only have a 256 byte stack and cannot relocate it, multitasking is very hard on a 6502. You either need to split the stack which limits number of tasks and limits task size or you need to copy the stack on context switches which is slow. One of the best changes on the 65C816 was making ...
- Sat Nov 04, 2023 1:03 am
- Forum: Official Announcements
- Topic: Release 45: Nuuk
- Replies: 4
- Views: 6877
Re: Release 45: Nuuk
There should really be a page on the main Commander X16 site (www.commanderx16.com) that has all the ROM images and updater tools in one spot, for updating both the CX16 ROM and Vera.
I want to upgrade my machine but scavenging the forum and GitHub to track everything down is going to be a real pain.
I want to upgrade my machine but scavenging the forum and GitHub to track everything down is going to be a real pain.
- Fri Oct 20, 2023 11:46 pm
- Forum: CX16 General Chat
- Topic: Where is J4 in the new board, & how many pins does it have?
- Replies: 3
- Views: 5736
Re: Where is J4 in the new board, & how many pins does it have?
Here it is on my board (DEV0080) right between the CPU and the System VIA:
And the silkscreening on the underside of the board:- Fri Jul 14, 2023 1:50 am
- Forum: CX16 General Chat
- Topic: Serial Number Tracker
- Replies: 68
- Views: 295754
Re: Serial Number Tracker
#80 is now living in Claremont, California.
- Thu Jun 22, 2023 6:35 pm
- Forum: X16 Bug Reporting
- Topic: mon
- Replies: 3
- Views: 6030
Re: mon
BASIC on the C64 is kind of unique, in that it doesn't care much about separators. The interpreter pattern-matches the first beginning of a typed word against the BASIC keywords, and if there is any match, it will assume the word is a command. Only after exhausting the list of commands does BASIC a...