annotate java/src/com/aurellem/gb/Gb.java @ 45:f6ff410a87fd

using libtool for convienence libraries
author Robert McIntyre <rlm@mit.edu>
date Tue, 06 Mar 2012 22:07:22 -0600
parents 9d3769896d66
children 75349da4c344
rev   line source
rlm@43 1 package com.aurellem.gb;
rlm@43 2
rlm@43 3 import java.nio.ByteBuffer;
rlm@43 4
rlm@43 5
rlm@43 6 public class Gb {
rlm@43 7
rlm@43 8
rlm@43 9 public Gb(){}
rlm@43 10
rlm@43 11
rlm@43 12 /**
rlm@43 13 * Hello World! This is just to test the native interface.
rlm@43 14 */
rlm@43 15 public native void sayHello();
rlm@43 16
rlm@43 17 /**
rlm@43 18 * Run the emulator on a given rom
rlm@43 19 * @param rom - the name of the rom.
rlm@43 20 */
rlm@43 21 public native void startEmulator(String rom);
rlm@43 22
rlm@43 23 }