mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
9 lines
166 B
Python
9 lines
166 B
Python
from typing import NamedTuple
|
|
|
|
|
|
class GrinchRamData(NamedTuple):
|
|
ram_address: int
|
|
value: int = None
|
|
binary_bit_position: int = None
|
|
bit_size: int = 1
|