From: David Crawshaw Date: Sat, 18 Nov 2006 05:06:53 +0000 (-0800) Subject: make lookupSymbol() publicly accessible X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=commitdiff_plain;h=4a26f91aad32c62d7407e0a2dc04c5cb44c74043 make lookupSymbol() publicly accessible darcs-hash:20061118050653-0c629-adcbb3b3c2cbf6946a571ae3af5028f076746cab.gz --- diff --git a/src/org/ibex/nestedvm/Runtime.java b/src/org/ibex/nestedvm/Runtime.java index 1b2e372..e72ef94 100644 --- a/src/org/ibex/nestedvm/Runtime.java +++ b/src/org/ibex/nestedvm/Runtime.java @@ -102,7 +102,7 @@ public abstract class Runtime implements UsermodeConstants,Registers,Cloneable { /** Subclasses should return the address of the symbol symbol or -1 it it doesn't exits in this method This method is only required if the call() function is used */ - protected int lookupSymbol(String symbol) { return -1; } + public int lookupSymbol(String symbol) { return -1; } /** Subclasses should populate a CPUState object representing the cpu state */ protected abstract void getCPUState(CPUState state);