/* Testbench for Homework 2 Problem 3 */ module sign_mag_add_tb (); parameter N = 4; logic [N-1:0] sum; // for the output of sign_mag_add - do not rename logic [N-1:0] data; // for the output of sync_rom - do not rename // for you to implement BOTH sign_mag_add and sync_rom initial begin // for you to implement end // initial endmodule // sign_mag_add_tb