From: Joshua Wise Date: Sat, 24 Jan 2009 05:45:12 +0000 (-0500) Subject: tests/miniblarg: Make the ROM easier to read. X-Git-Url: http://git.joshuawise.com/firearm.git/commitdiff_plain/fa1c06764950e6c965ed8ce1dcf180ae1ba2df1a?hp=7282e8f84e4f5aecab6e57c2086785bbd6d48748;ds=sidebyside tests/miniblarg: Make the ROM easier to read. --- diff --git a/tests/miniblarg.c b/tests/miniblarg.c index 8fdff0f..e32989c 100644 --- a/tests/miniblarg.c +++ b/tests/miniblarg.c @@ -13,7 +13,24 @@ int abort() int *ROM() { static int a[] = { - 3632, 9, 3584, 57, 3600, 16384, 3616, 65535, 11792, 20018, 19970, 24114, 592, 8, 3584, 10, 11792, 65535}; + 0x0E30, /* 0 */ + 0x0009, /* 1 */ + 0x0E00, /* 2 */ + 0x0039, /* 3 */ + 0x0E10, /* 4 */ + 0x4000, /* 5 */ + 0x0E20, /* 6 */ + 0xFFFF, /* 7 */ + 0x2E10, /* 8 */ + 0x4E32, /* 9 */ + 0x4E02, /* A */ + 0x5E32, /* B */ + 0x0250, /* C */ + 0x0008, /* D */ + 0x0E00, /* E */ + 0x000A, /* F */ + 0x2E10, /* 10 */ + 0xFFFF}; /* 11 */ return a; }