/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package cache; /** * * @author Juninho Carlos */ public class ConstanteDeTempo { static final int WB = 84; //(32 + 50 + 2) static final int hit_write = 4; //(2 + 2) static final int hit_read = 2; //(2) static final int leitura_miss = 118; //(2 (verifica hit) + 50(SDRAM) + 32(escreve cache) + 32(waitFIFO) + 2(controle)) static final int escrita_miss = 121;//(2 (verifica hit) + 50(SDRAM) + 32(escreve cache) + 34(waitFIFO) + 2(controle) + 1) static final int leitura_especial = 34; //(32 + 2) static final int escrita_1_palavra_na_SDRAM = 19; //(1 + 19) }