Digital System Design using FSMs. Peter D. Minns. Читать онлайн. Newlib. NEWLIB.NET

Автор: Peter D. Minns
Издательство: John Wiley & Sons Limited
Серия:
Жанр произведения: Техническая литература
Год издания: 0
isbn: 9781119782728
Скачать книгу
flip‐flop outputs are A = 1 and B = 0.

       The clock signal is logic 0, as indicated by P = /clk.

      Therefore, when the FSM enters state s1, the P output will be equal to logic 0 since /clk = 0 when the clock ‘clk’ is logic 1.

       The clock will be logic 1 when the FSM enters state 1 (0 to 1 transition) the clock clk will then go to logic 0 (whilst still in state s1), and P will go to logic 1, then, when the clock clk goes back to logic 1 the FSM will move to state s2 and the flip‐flop outputs will no longer be A/B so the P output will not go high again. Therefore, the P output will only be logic 1 for a single clock clk pulse in state s1 when clk = 0 at the end of the state s1.

Schematic illustration of timing diagram showing Moore and Mealy outputs.

      The waveforms show both versions of P. As you can see, the Moore version raises P for the whole duration that the FSM is in state s1, whilst the Mealy version raises P for the time that the clock is low during state s1. Note in Figure 1.18P = A/B·/Clk is not the same as P = A/B·clk.

      Note the narrow pulse in the P Mealy signal during the second clk pulse. This is a glitch caused by signal delays in the A and clk signal lines. (See Chapter 4 for more on this, but for now just accept it.)

      There is quite a lot going on here so you might want to re‐read this frame again to fully understand it. We will be looking at the idea of using more Mealy outputs later on in this book.

      It is possible to design state diagrams without Mealy outputs, using only Moore outputs. However, sometimes it is possible to reduce the size of a state diagram (less number of states) by using Mealy outputs. Examples are shown later.

      Now for something a bit different.

       Try producing a state diagram for an FSM that will produce a 101 pattern in response to an s input going high. Signal s must be returned low before another 101 pattern can be produced. In this example you are trying to use each state to produce the 101 pattern.

Schematic illustration of development of a 101 pattern generator sequence.

      It will develop state by state so you can see how it is done.

      Note that we must leave state s3 on a clock pulse so that P = 1 for the duration of a single clock pulse only.

      The final state required is to monitor for the input s = 0 condition.

      This state should return the FSM back to state s0.

      1 Complete the FSM state diagram then turn to Frame 1.18.

Schematic illustration of complete state diagram for the 101 pattern generator.

      The Boolean equation for P in this diagram is P = s1 + s3. However, we could make the P output a Mealy output that is only equal to 1 when in states s1 and s3, and only if the clock pulse is equal to 1.

      Then, P = s1·clk + s3·clk since P must be high in both states s1 and s3, but only when the clock input is high.

      Try writing an account of how this FSM works in your own words. If you get stuck, just re‐read Frames 1.16and 1.17again to refresh your memory.

      Now try modifying the state diagram to make it produce a 101 sequence of clock pulses (in the same manner as shown in Frames 1.17and 1.18).

       Also, arrange for the P output pulse in state s3 to be conditional on a new input called x. If x = 0, the FSM should produce the output sequence 100 at P. If x = 1, the output sequence at P should be 101.

      The reader may have noticed that the state diagram does not need to use slings. This is because slings are not really necessary with modern state diagrams. In fact, they are really only included for cosmetic reasons, to improve the readability of the design. From now on, only use slings where they improve the readability of the state diagram.

      1 When you have done this, draw your state diagram and then turn to Frame 1.19.

      Modify the state diagram to make it produce a 101 sequence of clock pulses (in the same manner as shown in Frames 1.15and 1.16. Also, arrange for the P output pulse in state s3 to be conditional on a new input called x. If x = 0, the FSM should produce the output sequence 100 at P. If x = 1, the output sequence at P should be 101.

Schematic illustration of modified state diagram with output P as a Mealy output.