1
0
mirror of https://github.com/geohot/qira synced 2025-03-14 19:12:51 +03:00

Retrieve more memory for the data view.

This commit is contained in:
Christopher Ganas 2015-03-30 22:01:13 -04:00
parent 12b5722391
commit 0833716d49

@ -44,7 +44,7 @@ function on_memory(msg) { DS("memory");
var addr = msg['address'];
var daddr = Session.get('daddr');
var PTRSIZE = msg['ptrsize'];
html = "<table><tr>";
html = "<table class='fill'><tr>";
for (var i = 0; i < msg['len']; i += PTRSIZE) {
if ((i&0xF) == 0) html += "</tr><tr><td>"+bn_add(addr, i)+":</td>";
html += "<td></td>";
@ -80,7 +80,7 @@ function on_memory(msg) { DS("memory");
}
// this must run on the last one too
if ((i&0xF) == (0x10-PTRSIZE)) {
if ((i&0xF) == (0x10-PTRSIZE)) {
str = "";
for (var j = 0; j < 0x10; j++) {
// ewww
@ -113,7 +113,8 @@ Deps.autorun(function() { DA("emit getmemory");
if (dview == undefined) {
$('#hexdump').empty();
} else {
stream.emit('getmemory', forknum, clnum-1, dview, 0x100);
//TODO: This should not be hardcoded.
stream.emit('getmemory', forknum, clnum-1, dview, 0x200);
}
});
@ -175,4 +176,3 @@ function on_clnum(msg) { DS("clnum");
}
$('#datachanges').html(datachanges);
} stream.on('clnum', on_clnum);