rlm@43: package com.aurellem.gb; rlm@43: rlm@43: import java.nio.ByteBuffer; rlm@43: rlm@43: rlm@43: public class Gb { rlm@43: rlm@43: rlm@43: public Gb(){} rlm@43: rlm@43: rlm@43: /** rlm@43: * Hello World! This is just to test the native interface. rlm@43: */ rlm@43: public native void sayHello(); rlm@43: rlm@43: /** rlm@43: * Run the emulator on a given rom rlm@43: * @param rom - the name of the rom. rlm@43: */ rlm@43: public native void startEmulator(String rom); rlm@43: rlm@43: }