Search found 337 matches
- Sat Nov 16, 2024 4:43 pm
- Forum: Introductions
- Topic: Hello from Oklahoma
- Replies: 3
- Views: 329
Re: Hello from Oklahoma
Welcome! Glad to have you here. :D Another thing I wonder is how to get a look at the VERA source code, because something I'd like to see in the line draw helper is a way to have the function invert or increment the color of pixels as it draws. The VERA source code is in Verilog can be found in this...
- Wed Nov 13, 2024 9:59 pm
- Forum: Demoscene
- Topic: Megascroll
- Replies: 5
- Views: 396
Re: Megascroll
Actually after a nudge on the discord, I tried making a SPRITE based version as well. I didn't fully finish it but it actually was simpler to write than this tile based one. I was drafting up a game idea, and being able to use a sprite as a bitmap canvas seems like it'd be really powerful. I was go...
- Wed Nov 06, 2024 3:02 am
- Forum: X16 Bug Reporting
- Topic: Monitor is able to view VERA memory, but does not save to file
- Replies: 12
- Views: 766
Re: Monitor is able to view VERA memory, but does not save to file
SAVE has a couple of shortcomings. One of them is the inability to save from VRAM, but another is the inability to save from banked RAM. That is, when you LOAD to banked RAM, it automatically handles wrapping from $BFFF to $A000 and increasing the RAM bank. SAVE doesn't have any knowledge of banked ...
- Tue Nov 05, 2024 9:49 pm
- Forum: X16 Bug Reporting
- Topic: Monitor is able to view VERA memory, but does not save to file
- Replies: 12
- Views: 766
Re: Monitor is able to view VERA memory, but does not save to file
I don't know about the rest of the memory. But somewhere around r45 they did start initializing the Palette Ram on boot so those should be reliable. (512 bytes starting at 1:$FA00) I thought so too, I double checked, and it does, so that's not the issue. The problem seems to be simpler: the monitor...
- Tue Nov 05, 2024 7:16 pm
- Forum: CX16 General Chat
- Topic: How to get started?
- Replies: 7
- Views: 580
Re: How to get started?
Asking on Discord can yield faster responses, but if those questions and answers don't make their way back here, then nobody else will benefit from the knowledge. It's kinda like if I ask a question and someone replies with "I sent a PM", and then that's the end of the discussion. It helpe...
- Tue Nov 05, 2024 7:13 pm
- Forum: X16 Bug Reporting
- Topic: Monitor is able to view VERA memory, but does not save to file
- Replies: 12
- Views: 766
Re: Monitor is able to view VERA memory, but does not save to file
When you READ from VERA 1:F9C0..1:FFFF, you don't get the contents of the register, but rather the last byte written to that address by the CPU . On a cold boot, those values are unpredictable even if the registers themselves are initialized. This information comes from here , the VERA chapter of th...
- Mon Nov 04, 2024 6:13 pm
- Forum: CX16 General Chat
- Topic: What do we need for a "How to program the X16" book?
- Replies: 22
- Views: 1242
Re: What do we need for a "How to program the X16" book?
(As a side note: I'm not proposing a 1:1 re-print. I'm not sure who holds Commodore's old Copyrights, or if anyone can reasonably claim them. I think that, instead, I'd simply start with the VIC-20 guide's outline and write the chapters from scratch, covering the same basic points. ) Oops, I wasn't...
- Sun Nov 03, 2024 9:59 pm
- Forum: CX16 General Chat
- Topic: What do we need for a "How to program the X16" book?
- Replies: 22
- Views: 1242
Re: What do we need for a "How to program the X16" book?
If you're talking about the VIC-20 "Personal Computing Guide", I've read a few chapters of it and I like it so far. I think it'd be a relatively safe thing to print too, unless there are plans to completely change how the editor works, or how BASIC works on a fundamental level.
- Sat Nov 02, 2024 6:03 pm
- Forum: CX16 General Chat
- Topic: What do we need for a "How to program the X16" book?
- Replies: 22
- Views: 1242
What do we need for a "How to program the X16" book?
We keep dancing around this, and there seems to be plenty of newcomers showing up, so let's actually discuss this, or at least say where these materials are if they exist already. First, Commander X16 Reference Manual . This is a Github repository with all of the documentation and reference material...
- Tue Oct 29, 2024 5:32 pm
- Forum: Programming
- Topic: My first foray into ASM. Advice?
- Replies: 11
- Views: 1254
Re: My first foray into ASM. Advice?
Comment, comment, comment. Never say "I'll remember what this does" or "I'll remember why I did it this way"; that's the Code Gremlin lying to you. :P More specifically, comment as though you'll need to re-teach yourself what your code does a year from now, and it sometimes helps...