Continuous assignment statements


Rewrite the following code using only continuous assignment statements. module behav_module(input a, b, c, d, e, output reg x, y); always @(a, b, c, d) begin if (a) x = (b & c) | d; else x = (b & c); end always @(a, e) y = e | a; endmodule module assign_module(input a, b, c, d, e, output x, y)?

Request for Solution File

Ask an Expert for Answer!!
Electrical Engineering: Continuous assignment statements
Reference No:- TGS0427707

Expected delivery within 24 Hours