From 4a26f91aad32c62d7407e0a2dc04c5cb44c74043 Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Fri, 17 Nov 2006 21:06:53 -0800 Subject: [PATCH] make lookupSymbol() publicly accessible darcs-hash:20061118050653-0c629-adcbb3b3c2cbf6946a571ae3af5028f076746cab.gz --- src/org/ibex/nestedvm/Runtime.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.10.4