Starting from:

$30

CS2110-Homework 4 Solved

In this assignment, you will learn the basics of sequential logic, and create both a one-hot state machine and a reduced state machine.

1         Part 1: RS Latch, Master-Slave D Flip-Flop, and Register
For this part of the homework you are going to make your own Register, from the ground up. All of the circuits in this part will be in the latches.sim file.

1.1        RS Latch
Open up the the RS Latch subcircuit in the latches.sim file. For this part you will need to create an RS Latch. Note: You only need 1 output, so you may disregard the inverse output of a normal RS Latch.

You can find information about this circuit in the Patt & Patel textbook, pages 65 and 66.

1.2        Master-Slave D Flip-Flop
Open up the D Flip-Flop subcircuit. For this part you will need to create a Master-Slave D Flip-Flop using the RS Latch you just created. Note: Your implementation of this Master-Slave D Flip-Flop should use only change on the rising edge, i.e, the state of the D Flip-Flop should only be able to change at the exact moment when the CLK (Clock) input goes from 0 to 1.

Consider implementing a Gated D Latch subcircuit first.

 

Figure 1: An example of the Master Slave D Flip Flop, with the boxes representing Gated D Latches

You can find information about the Gated D Latch and this circuit in the Patt & Patel textbook, pages 65 and 66.

1.3        Register
Open up the Register subcircuit. For this part you will need to create a 4-bit Register. This Register also needs to use edge-triggered logic. Hint: Split the 4-bit input and utilize the D Flip-Flops you just created.

2         Part 2: Finite State Machine
For this part of the homework, you will implement the finite state machine behind a parking garage gate.

2.1        The State Machine
We are modeling the finite state machine behind a boom barrier (think gated parking garage entrances).

2.1.1       Scenario
1.   State: We start with the barrier closed, there is no car, and the SCAN YOUR BUZZCARD light is on.

2.   Event: A car approaches the machine and the driver scans their card.

3.   State: The barrier opens and stays open.

4.   Event: The driver drives under the gate, the sensor under the gate starts showing that there is a car underneath.

5.   State: The barrier stays open, waiting for the car to pass.

6.   Event: The driver clears the gate, and the sensor under the gate starts showing that there is not a car underneath.

7.   Our state machine loops back to the beginning, with the gate closed and light on.

 

Figure 2: Our state machine with its 3 states in order.

2.1.2       States
Our state machine has 3 states: State 0: Gate Closed, State 1: Gate Open, and State 2: Car Under Gate. Our state machine begins with State 0: Gate Closed.

2.1.3       Inputs
•    G = Valid card scan from card scanner (1 when a valid card scan has been made, 0 otherwise)

•    F = Gate sensor: whether or not there is a car passing under the gate (1 when a car is underneath the gate, 0 otherwise)

2.1.4       Outputs
•    A = Scan Card Now light at the kiosk

•    B = Signal to the motor to keep the gate open

•    C = Signal to the motor to keep the gate closed

Note that B and C are the inverse of each other and there’s no practical reason why you’d do this in real life. They exist just for the sake of having more outputs.

2.1.5       State - Output Mappings
•    State 0: Scan card light and closed garage door

•    State 1: Open garage door

•    State 2: Open garage door

2.1.6       Transitions
1.   If we are in state 0 and G == 1 (a card was read) we transition to state 1.

2.   If we are in state 1 and F == 1 (a car is detected underneath) we transition to state 2.

3.   If we are in state 2 and F == 0 (the detected car is gone) we transition to state 0.

Note that these rules don’t include every possible combination of inputs and current state. You should interpret these rules as sufficient - for example, if we are in state 0 and G == 1, we should transition to state 1 regardless of the value of F. Similarly, all input combinations not containing G == 1 at this state should result in staying in this state.

2.1.7       Finite State Machine Diagram
Here is a diagram of our state machine containing all of the information listed above:

 

Figure 3: The State Machine Diagram for our State Machine

2.2        One-Hot Encoding Implementation
For this part of the homework you will need to implement our state machine in CircuitSim using a One-Hot Encoding. What this means is that we use 1 bit per state to represent our current state. So with our 3 states, we will need 3 bits. It is important that this machine stays one-hot: there should be at most one bit set to 1 in the register at any time.

Use the following mappings for each state in your One-Hot state machine:

•    State 0: 001

•    State 1: 010

•    State 2: 100

Make this circuit in the One-Hot State Machine subcircuit in the fsm.sim file. Also, notice along with G and F there are 2 other inputs: CLK is the clock and will be used to simulate the clock of the circuit cycling on and off, and RESET should reset your state machine.

Your state machine, when the circuit is initially started or when the reset button is pushed, will return to the invalid 000 state. You need to handle this case to make it go to State 0, which is our start state.

2.3        Reduced Encoding Implementation
For this part of the homework you will need to implement our state machine in CircuitSim using a Reduced Encoding. This means we will be using two bits to represent the state instead of the three bits we used in the One-hot case.

Each state will be represented by its number in two-bit binary: State 0 corresponds to 00, State 1 to 01, and State 2 to 10. The 11 encoding is unused.

2.3.1       Worksheet
In order to reach this encoding, you need to prepare a truth table, Karnaugh maps, and finally reach the final reduced expressions that you will use for the gates in your circuit. For this purpose, we have prepared a worksheet that you will find in this archive that you must complete. 



2.3.2       Circuit
Now that the worksheet is complete and you have verified your results on Canvas, it’s time to implement this circuit in the Reduced State Machine subcircuit in the fsm.sim file. Also, notice along with G and F there are 2 other inputs: CLK is the clock and will be used to simulate the clock of the circuit cycling on and off, and RESET should reset your state machine.

Since 00 is the default state, no additional logic for the resetting is required in this case.

More products