Files
6502_project/rom.py

4 lines
82 B
Python

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