feat(rom): add python program for eeprom

This commit is contained in:
2025-05-10 10:04:33 +02:00
parent 85ebe18132
commit b7b202a15b
2 changed files with 5 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.bin

4
rom.py Normal file
View File

@@ -0,0 +1,4 @@
rom = bytearray([0xea] * 32768)
with open("rom.bin", "wb") as f:
f.write(rom)