ConstanteDeTempo.java 722 B

12345678910111213141516171819
  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 cache;
  7. /**
  8. *
  9. * @author Juninho Carlos
  10. */
  11. public class ConstanteDeTempo {
  12. static final int WB = 84; //(32 + 50 + 2)
  13. static final int hit_write = 4; //(2 + 2)
  14. static final int hit_read = 2; //(2)
  15. static final int leitura_miss = 118; //(2 (verifica hit) + 50(SDRAM) + 32(escreve cache) + 32(waitFIFO) + 2(controle))
  16. static final int escrita_miss = 121;//(2 (verifica hit) + 50(SDRAM) + 32(escreve cache) + 34(waitFIFO) + 2(controle) + 1)
  17. static final int acesso_1_palavra_na_SDRAM = 19; //(1 + 19)
  18. }