comparison java/src/com/aurellem/gb/Gb.java @ 106:3a60bb14a64a

better functional assembly interface; removed frame numbers from SaveStates
author Robert McIntyre <rlm@mit.edu>
date Wed, 14 Mar 2012 21:37:37 -0500
parents 2090bcb78f44
children ad96e9464d6a
comparison
equal deleted inserted replaced
105:2f8089eacab9 106:3a60bb14a64a
18 /** 18 /**
19 * Run the emulator on a given rom 19 * Run the emulator on a given rom
20 * @param rom - the name of the rom. 20 * @param rom - the name of the rom.
21 */ 21 */
22 public static native void startEmulator(String rom); 22 public static native void startEmulator(String rom);
23
24 23
25 public static void loadVBA(){ 24 public static void loadVBA(){
26 System.loadLibrary("vba"); 25 System.loadLibrary("vba");
27 } 26 }
28 27