mirror of
https://github.com/guezoloic/6502_project.git
synced 2026-01-25 09:34:06 +00:00
4 lines
82 B
Python
4 lines
82 B
Python
rom = bytearray([0xea] * 32768)
|
|
|
|
with open("rom.bin", "wb") as f:
|
|
f.write(rom) |