Hacker News new | ask | show | jobs
by tyingq 1942 days ago
Processors like the 6502 aren't considered very C friendly for a variety of reasons, but mostly because the register size isn't big enough for the most common data types like int or char *. You often end up with terrible ASM.
1 comments

Interesting, thank you.