Files
RomWBW/Source/HBIOS/MakeBlankROM.ps1
Wayne Warthen a2566d4de5 Revise Serial Driver Initialization
- Implement PREINIT
- Use detected CPU speed for initialization
2016-05-22 07:52:13 -07:00

5 lines
243 B
PowerShell

# Create a "blank" rom disk image, filled with hex E5
#
Set-Content -Value ([byte[]](0xE5) * (512KB - 128KB)) -Encoding byte -Path 'Blank512KB.dat'
Set-Content -Value ([byte[]](0xE5) * (1MB - 128KB)) -Encoding byte -Path 'Blank1024KB.dat'