You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
123456789101112131415
  1. module Writeback_cycle(Result_Select_W, Alu_Result_W, ReadData_W, Result_W);
  2. // Declaration of Inputs and Outputs
  3. input Result_Select_W;
  4. input [31:0] Alu_Result_W, ReadData_W;
  5. output [31:0] Result_W;
  6. // Declaration of Module
  7. mux2_1 result_mux(.a(Alu_Result_W),
  8. .b(ReadData_W),
  9. .s(Result_Select_W),
  10. .y(Result_W)
  11. );
  12. endmodule