Lines Matching refs:filename
10832 function openSRAM(filename) { argument
10834 if (findValue("B64_SRAM_" + filename) != null) {
10836 return base64ToArray(findValue("B64_SRAM_" + filename));
10838 else if (findValue("SRAM_" + filename) != null) {
10840 return findValue("SRAM_" + filename);
10851 function openRTC(filename) { argument
10853 if (findValue("RTC_" + filename) != null) {
10855 return findValue("RTC_" + filename);
10866 function openState(filename, canvas) { argument
10868 if (findValue(filename) != null) {
10873 gameboy.savedStateFileName = filename;
10874 gameboy.returnFromState(findValue(filename));
10882 cout("Could not find the save state " + filename + "\".", 2);