/**
 * CS1101 Lab 03 Ex 2: Cache.java
 *
 * <fill in your discussion group here>
 *
 * This program simulates a memory cache in a computer.
 **/

import java.util.*;

public class Cache
{
    public static void main(String[] args)
    {
        Scanner stdIn = new Scanner(System.in);
        int CACHE_SIZE = 8;
        int[] cache = new int[CACHE_SIZE];
        int[] timeStamp = new int[CACHE_SIZE];
        int currTime = 1;
        String instr = "";
        int totalTime = 0;

        /*
         *  Type in your code here.
         */

        System.out.println("Total time: " + totalTime + "ns.");
    }
}


