I have been watching a lecture at the following URL explaining MIPS ISA.
http://www.youtube.com/watch?v=DVFwXvxyC38&list=PLD8AF625E53B0691F&index=4
According to my understanding so far:
for MIPs 32-bit, the main memory has a 32-bit address input bus, each slot in memory holds 8-bit, so each address can refer to 8-bits of memory (which is why its byte addressable); since register size is 32-bit, "words" in main memory start at every 4th byte (so that each word is 4 consecutive slots in memory - 4 * 8 = 32).
But, the instructor in the lecture said (at time 3:40) that "Byte addressable means that for MIPS, each word size is four bytes"; shouldn't he say byte-addressable means each address can refer to 1 byte ?
Can someone please verify this ?
Thanks.