I'm wondering if RAM is typically byte or word level addressed, and I think the answers about it I can find are contradictory. I'm aware different RAM might have different designs, and just wonder in general what the trends are.
Paul on Quora says modern RAM is word-addressed:
"DDR RAM actually addresses 64-bit blocks, not individual bytes. The bytes are extracted by the CPU (or the L3 cache which may actually have a byte-addressable memory, although it still is used in word-addressable mode pretty much always since it’s used by the L2 cache which works with 128-bit cache lines). "
While SLaks on Stackoverflow says it is always byte-addressed:
"RAM is always byte-addressed. "
So I thought I'd ask, if I have an isolated RAM, typical modern RAM, and input an address on the address pins, and then increment it by 1, will the output differ with one byte or one word? Is the RAM byte-addressed or is it word-addressed and the CPU adds byte-addressing and therefore it is said that "memory is byte addressed" while it is actually word-addressed?