comparison java/src/com/aurellem/gb/Gb.java @ 526:2620d6318e8d

sound recording complete.
author Robert McIntyre <rlm@mit.edu>
date Sun, 24 Jun 2012 13:34:15 -0500
parents fa7676dbf6f2
children
comparison
equal deleted inserted replaced
525:fa7676dbf6f2 526:2620d6318e8d
99 99
100 public static final int NUM_REGISTERS = 29; 100 public static final int NUM_REGISTERS = 29;
101 101
102 public static final int GB_MEMORY = 0x10000; 102 public static final int GB_MEMORY = 0x10000;
103 103
104 public static final int SOUND_SIZE = 104 public static final int MAX_SOUND_BYTES = 44100*2;
105 44100*2;
106 //1470*2;
107 105
108 public static native void getMemory(int[] store); 106 public static native void getMemory(int[] store);
109 107
110 public static native void writeMemory(int[] newMemory); 108 public static native void writeMemory(int[] newMemory);
111 109