Implement a 2-input 2-output 8-bit div/mod module. Use the div/mod algorithm introduced in lecture for performing the operations. Your module should have inputs a (dividend) and b (divisor) as well as outputs q (quotient) and r (reminder). Implement a testbench for your module as well. The testbench should perform division of a by b and show the quotient and the reminder. The testbench should divide the following numbers (in binary of course): 8/2, 8/3, 15/4. The module should be called "divmod" and the file should be called divmod.v. The testbench should be called divmod_tb and the file should be divmod_tb.v. A third file, called divmod_output.txt should contain the output of the simulation. Send your work, before due date, via email to the TA (csorient AT uci.edu) and the Reader (leep AT uci.edu) in a single zip file with your student # as its name.