2019-06-14 09:33:19 +08:00

9 lines
194 B
JavaScript

function loadRom(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function() { callback(xhr.response) };
xhr.send();
}