X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altoslib%2FAltosDebug.java;h=8faab03bdc19a406d0362fd90a731162ac9466fd;hp=4d8e3ae7cfa994bb7718ac41bbf0691a98111c76;hb=212a1b66ae04317b7b42ba57573b910fde09ca6c;hpb=106d212ff5920c39d95751ef6249dc141970412c diff --git a/altoslib/AltosDebug.java b/altoslib/AltosDebug.java index 4d8e3ae7..8faab03b 100644 --- a/altoslib/AltosDebug.java +++ b/altoslib/AltosDebug.java @@ -15,7 +15,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -package org.altusmetrum.altoslib_1; +package org.altusmetrum.altoslib_2; import java.io.*; @@ -260,7 +260,8 @@ public class AltosDebug { public AltosRomconfig romconfig() { try { byte[] bytes = read_memory(0xa0, 10); - return new AltosRomconfig(bytes, 0); + AltosHexfile hexfile = new AltosHexfile (bytes, 0xa0); + return new AltosRomconfig(hexfile); } catch (IOException ie) { } catch (InterruptedException ie) { }