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,11 +1248,16 @@ 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;
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++) {
@ -1270,6 +1275,7 @@ function CPU6502(options)
}
result += "\n";
}
}
return result;
},