Image Disk BuildXX.ps1 update

This commit is contained in:
Wayne Warthen
2020-01-14 16:35:11 -08:00
parent c77b9130f3
commit 815c6c14a0
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ $env:PATH = $CpmToolsPath + ';' + $env:PATH
"Generating Floppy Disk ${Disk}..."
$Blank = "".PadLeft(1440KB, 0xE5)
$Blank = ([string]([char]0xE5)) * 1440KB
Set-Content -Value $Blank -NoNewLine -Path "fd_${Disk}.img"
for ($Usr=0; $Usr -lt 16; $Usr++)

View File

@@ -14,7 +14,7 @@ $env:PATH = $CpmToolsPath + ';' + $env:PATH
"Generating Hard Disk ${Disk}..."
$Blank = "".PadLeft((128KB * 65), 0xE5)
$Blank = ([string]([char]0xE5)) * (128KB * 65)
Set-Content -Value $Blank -NoNewLine -Path "hd_${Disk}.img"
for ($Usr=0; $Usr -lt 16; $Usr++)