4. Calculate the results of these bit-wise operations: 101 100 ^011 011 111 001 e011 100...
XYZ f(x,y,z) 111 110 101 100 011 010 001 000 Based on this truth table. What is the sum of products form? How to use a K-map to figure out the minimal form for this boolean function. What is the circuit digram for the minimized form?
Design a 8x4 ROM with the following contents. Address 000 001 010 011 100 101 110 111 ROM Data 0001 0001 0000 0000 0111 0110 1111 0101
Given a language ? = {000, 001, 010, 011, 100, 101, 110}. Prove that this language is regular.
4. Convert the following regular expressions to e-NFA's. (a) 1(0110)0(11 10) (b) (000)(011+001) (111) (c) (01 10(00 11)(1 10 100)
in VHDL
Show synthesizable VHDL code for a register unit that performs operations shown below. The unit has a 3-bit mode (md) input, an asynchronous reset (rs) input, a 1-bit output control (oc) input, and an 8-bit bi-directional io bus. The internal register drives the io bus when oc is ‘I, and md is not “11 1". Use std-logic. md-000: does nothing md-001: right shift the register md-010: left shift the register md 011: up count, binary md-100: down count,...
Design a Binary Counter with the repeating sequence of 100 - 110 - 111 - 011 - 001 - 000 using T Flip-Flops. Find the input expressions of the T Flip-Flops by K-Map.
Use D flip-flops to design a 3-bit counter which counts in the sequence: 110, 100,
101, 111, 011, 010, 001, (repeat) 110, . . .
In this case, what will happen if the counter is started in state 000?
(1 point) Consider a linear code with generator matrix Encode the message 011 010 111 101 using this code.
will give thumbs up need answer asap
P3.94pts Implement a 3-bit synchronous gray code down-counter with positive-edge-triggered D flip-flops using graphical symbols of D flip-flops and any logic gates. You can refer to the table below to understand the 3-bit gray code (The desired behavior is as follows: 000 100 101 111 - 110 - 010011001 → 000 → ...). Decimal 1 Gray code 000 001 011 010 110 111 101 100 5 6
Question 4 State Machines (25 marks) a. (5 marks) A 3-bit Gray code counter advances on positive clock edges and generates outputs in the sequence: 000, 001, 011, 010, 110, 111, 101, 100. Draw the assigned state table for a state machine implementing this counter. b. (10 marks) For the Gray code counter in part a, derive (unoptimised) equations for the next state as a function of the current state. c. (10 marks) Consider the following sequence detector. In each...