Browse Source

Image Disk BuildXX.ps1 update

patch
Wayne Warthen 6 years ago
parent
commit
815c6c14a0
  1. 2
      Source/Images/BuildFD.ps1
  2. 2
      Source/Images/BuildHD.ps1

2
Source/Images/BuildFD.ps1

@ -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++)

2
Source/Images/BuildHD.ps1

@ -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++)

Loading…
Cancel
Save