neser 1.1.0

NESER - Nintendo Emulation Systems Engine (Rust). Desktop and WebAssembly frontends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""ROM database entry model."""

from dataclasses import dataclass


@dataclass(frozen=True)
class RomDbEntry:
    """Minimal ROM DB entry indexed by full-ROM CRC."""

    rom_id: str
    name: str
    crc: str
    mapper: str
    submapper: str