Exams/ece241 2014 q5b

From HDLBits

The following diagram is a Mealy machine implementation of the 2's complementer. Implement using one-hot encoding.

Ece241 2014 q5b.png


Module Declaration

module top_module (
    input clk,
    input areset,
    input x,
    output z
); 

Write your solution here

Upload a source file...