File size: 194 Bytes
89610f7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
function loadRom(url, callback) {
	var xhr = new XMLHttpRequest();
	xhr.open('GET', url);
	xhr.responseType = 'arraybuffer';

	xhr.onload = function() { callback(xhr.response) };
	xhr.send();
}