Exams/ece241 2014 q5b
From HDLBits
exams/ece241_2014_q5aPrevious
Nextexams/2014_q3fsm
The following diagram is a Mealy machine implementation of the 2's complementer. Implement using one-hot encoding.
Module Declaration
module top_module (
input clk,
input areset,
input x,
output z
);
exams/ece241_2014_q5aPrevious
Nextexams/2014_q3fsm
