lucky / resources /xhr.js
Studytime171's picture
Duplicate from Studytime171/Lalitgangwani
89610f7
raw
history blame contribute delete
194 Bytes
function loadRom(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function() { callback(xhr.response) };
xhr.send();
}