1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00

nes: fixed max stack call

This commit is contained in:
Steven Hugg 2019-03-13 21:05:08 -04:00
parent 98ccf2b26a
commit 38d8412333
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
import { Platform, Base6502Platform, BaseMAMEPlatform, getOpcodeMetadata_6502, cpuStateToLongString_6502, getToolForFilename_6502, dumpStackToString, ProfilerOutput } from "../baseplatform";
import { PLATFORMS, RAM, newAddressDecoder, padBytes, noise, setKeyboardFromMap, AnimationTimer, RasterVideo, Keys, makeKeycodeMap, dumpRAM, KeyFlags } from "../emu";
import { hex, lpad, lzgmini } from "../util";
import { hex, lpad, lzgmini, byteArrayToString } from "../util";
import { CodeAnalyzer_nes } from "../analysis";
import { SampleAudio } from "../audio";
@ -197,7 +197,7 @@ const _JSNESPlatform = function(mainElement) {
}
loadROM(title, data) {
var romstr = String.fromCharCode.apply(null, data);
var romstr = byteArrayToString(data);
nes.loadROM(romstr);
frameindex = 0;
}

2
tss

@ -1 +1 @@
Subproject commit d630ddcb29d74a178cde043d74188fac35d6a21f
Subproject commit 5b5ee67fc06956bc7dce51726e98812d2d897eaa