OtimizationMips.java 560 B

12345678910111213141516171819202122232425
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package targets.mips;
  7. import API.CodeProcessorInterface;
  8. import common.Code;
  9. import java.util.LinkedHashMap;
  10. /**
  11. *
  12. * @author EUGENIO CARVALHO
  13. */
  14. public class OtimizationMips implements CodeProcessorInterface {
  15. public OtimizationMips() {
  16. }
  17. @Override
  18. public void Exec(Code c, LinkedHashMap<String, CodeProcessorInterface> cp) throws Exception {
  19. }
  20. }