From d220212bdfb2a5bb06e89a235f3720de40084466 Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Sun, 19 Apr 2020 19:06:32 -0700 Subject: [PATCH] Added SNES SuperFX hardware type --- host/scripts/snes/v2proto_hirom.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/host/scripts/snes/v2proto_hirom.lua b/host/scripts/snes/v2proto_hirom.lua index 3f8e48f..e3c9fa1 100644 --- a/host/scripts/snes/v2proto_hirom.lua +++ b/host/scripts/snes/v2proto_hirom.lua @@ -17,12 +17,14 @@ local lorom_name = 'LoROM' -- http://old.smwiki.net/wiki/Internal_ROM_Header -- https://en.wikibooks.org/wiki/Super_NES_Programming/SNES_memory_map -- https://patpend.net/technical/snes/sneskart.html +-- https://snesdev.mesen.ca/wiki/index.php local hardware_type = { [0x00] = "ROM Only", [0x01] = "ROM and RAM", [0x02] = "ROM and Save RAM", [0x03] = "ROM and DSP1", + [0x13] = "ROM and SuperFX", [0x43] = "ROM and S-DD1", [0xF3] = "ROM and CX4",