iOS icons I forgot.

This commit is contained in:
Will Scullin 2013-11-16 13:50:06 -08:00
parent 345b7b25f4
commit 0ef4109c41
3 changed files with 24 additions and 18 deletions

BIN
img/webapp-ipad.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
img/webapp-iphone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -1248,27 +1248,33 @@ function CPU6502(options)
return result;
},
dumpPage: function(page) {
if (page === undefined) {
page = pc >> 8;
dumpPage: function(start, end) {
var result = "";
if (start === undefined) {
start = pc >> 8;
}
var b, result = "", idx, jdx;
for (idx = 0; idx < 16; idx++) {
result += toHex(page) + toHex(idx << 4) + ": ";
for (jdx = 0; jdx < 16; jdx++) {
b = readByte(page * 256 + idx * 16 + jdx, true);
result += toHex(b) + " ";
}
result += " ";
for (jdx = 0; jdx < 16; jdx++) {
b = readByte(page * 256 + idx * 16 + jdx, true) & 0x7f;
if (b >= 0x20 && b < 0x7f) {
result += String.fromCharCode(b);
} else {
result += ".";
if (end === undefined) {
end = start;
}
for (var page = start; page <= end; page++) {
var b, idx, jdx;
for (idx = 0; idx < 16; idx++) {
result += toHex(page) + toHex(idx << 4) + ": ";
for (jdx = 0; jdx < 16; jdx++) {
b = readByte(page * 256 + idx * 16 + jdx, true);
result += toHex(b) + " ";
}
result += " ";
for (jdx = 0; jdx < 16; jdx++) {
b = readByte(page * 256 + idx * 16 + jdx, true) & 0x7f;
if (b >= 0x20 && b < 0x7f) {
result += String.fromCharCode(b);
} else {
result += ".";
}
}
result += "\n";
}
result += "\n";
}
return result;
},