Skip to main content

All Questions

Tagged with
27 votes
7 answers
7k views

Did anyone ever run out of stack space on the 6502?

Unlike its main rival the Z80, the 6502 had a size limit of 256 bytes for the hardware stack. That sounds like a very tight limit, but in my experience, it was never actually an issue; by the time you ...
rwallace's user avatar
  • 63.1k
13 votes
6 answers
2k views

Could the Z80 do interference-free video as the 6502 could?

Technically this isn't just about video since it applies to any regularly scheduled DMA¹ from a non-CPU subsystem, but video is the most common application of this technique so I'll use that as the ...
cjs's user avatar
  • 27k
4 votes
2 answers
476 views

How much memory does this SYM-1 have?

I have a SYM-1 with the following memory configuration: How much memory is that? Those all appear to be L2114UCE chips, which are described as "Static 1024x4 NMOS RAM", but I'm not sure how ...
larsks's user avatar
  • 426
8 votes
1 answer
957 views

Fastest way to write 0x00 to a zero-page memory location? (6502, Atari 2600)

I have a kernel in my 6502 game that writes two dots to a sprite, so for example: ........ ........ .XX..XX. .XX..XX. ........ ........ Either 0, 1, or 2 dots can be on at a time. This is done one ...
trim's user avatar
  • 83