Fix small references

replace "bin" with "binary_bit_pos" in RAMHandler.py
This commit is contained in:
2025-11-01 11:42:44 -06:00
parent 973fe39047
commit 0df9f5cc57
2 changed files with 9 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ class UpdateMethod(IntEnum, boundary=STRICT):
SET = 1
ADD = 2
SUBTRACT = 3
FREEZE = 4
FREEZE = 4 # Currently Non-functional
class GrinchRamData:
@@ -51,7 +51,7 @@ class GrinchRamData:
self.value = 1
if binary_bit_pos > -1:
self.binary_bit_pos = bin
self.binary_bit_pos = binary_bit_pos
if byte_size > 0:
self.byte_size = byte_size