2003/11/16 09:03:16
[org.ibex.core.git] / src / org / xwt / mips / Runtime.java
index 89918a7..be050bf 100644 (file)
@@ -6,9 +6,9 @@ import java.io.*;
 
 public abstract class Runtime implements Syscalls, Errno,Registers {
     /** Pages are 4k in size */
-    final static int PAGE_SIZE = 4096;
-    final static int PAGE_WORDS = (int)(PAGE_SIZE >>> 2);
-    final static int PAGE_SHIFT = 12;
+    public final static int PAGE_SIZE = 4096;
+    public final static int PAGE_WORDS = (int)(PAGE_SIZE >>> 2);
+    public final static int PAGE_SHIFT = 12;
     /** There are 65536 pages available for a total of 256mb of addressable memory */
     protected final static int TOTAL_PAGES = 65536;
     /** The top 256 pages are reserved for the stack. Arguments and userdata info use up the first few pages */