Some removals along with address binary findings for locations. Also credits

This commit is contained in:
MarioSpore
2025-07-26 13:22:07 -04:00
parent bede861e3d
commit 10fa86d52c
4 changed files with 37 additions and 43 deletions

View File

@@ -1,8 +1,10 @@
from typing import NamedTuple
from typing import NamedTuple, Optional
class GrinchRamData(NamedTuple):
ram_address: int
value: int = None
binary_bit_position: int = None
value: Optional[int] = None #none is empty/null
# Either set or add either hex or unsigned values through Client.py
# Hex uses 0x00, unsigned are base whole numbers
binary_bit_pos: Optional[int] = None
bit_size: int = 1