Add NES cart extraction

This commit is contained in:
Matt Nadareski
2026-03-07 11:32:47 -05:00
parent 8844632fc7
commit f75bc21d54
3 changed files with 301 additions and 0 deletions

View File

@@ -230,6 +230,11 @@ namespace ExtractionTool.Features
nex.Extract(OutputPath, Debug);
break;
// NES Cart
case NESCart nes:
nes.Extract(OutputPath, Debug);
break;
// PAK
case PAK pak:
pak.Extract(OutputPath, Debug);