I am trying to understand the diagram for register write operation in MIPS(Single Cycle Data Path). I do not get why do we need to AND the output of the decoder to the write enable signal? I am not getting how would it enable the specific register. Please help me out with it. enter image description here Thanks.

link|improve this question

The decoder selects the target register. The write line just sets mode "databus to register". How does the diagram for READ look like? – ott-- Sep 15 '11 at 17:41
@ott: I was confused with what value will it supply. Got it now. – Startup Crazy Sep 15 '11 at 18:34
feedback

1 Answer

up vote 1 down vote accepted

There are several inconsistencies in the diagram. The "n-to-2^n" decoder should have n inputs and 2^n outputs. With such a decoder, the number of registers should be 2^n.

The decoder inputs specify the address (i.e. the register) to be written to. For any of the 2^n possible register numbers, the corresponding output of the decoder will be set to 1, with all other outputs set to 0.

The "write" signal is probably driven off a clock.

The purpose of the AND gates is to make the "write" signal propagate to the correct register (just the one!) The register is chosen by the address fed into the decoder, as described above.

The selected register will latch onto the "register data", most probably on the rising edge of the clock. All the remaining registers will keep their present values, since their C inputs will remain at 0 throughout.

link|improve this answer
You mean that the decoder will supply on the output whose address is fed in? – Startup Crazy Sep 15 '11 at 17:54
@Akito: Yes, the decoder will supply 1 on the output whose address is fed in, and 0 or all other outputs. That's what a decoder does. en.wikipedia.org/wiki/Decoder – aix Sep 15 '11 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.