1 package com.tapina.robe.runtime.instruction; 2 3 import com.tapina.robe.runtime.CPU; 4 5 /*** 6 * Created by IntelliJ IDEA. 7 * User: gareth 8 * Date: Sep 2, 2003 9 * Time: 5:20:34 PM 10 */ 11 public interface AddressSource { 12 int getTransferAddress(CPU cpu); 13 }