/* * CS201: Data Structures * Assignment 4 Part II * * File : RAMachineInterface.java * Description: Interface for RAM Simulator * * Department of Computer Science and Engineering, * Indian Institute of Technology, Guwahati. * India. * * Dated: 18 Aug, 2002. */ public interface RAMachineInterface { /* * Executes the program contained in program[][] array by * simulating Random Access Machine (RAM). */ public void execute(int program[][], int inputTape[], int outputTape[]); }