mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Image Disk BuildXX.ps1 update
This commit is contained in:
@@ -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++)
|
||||
|
||||
@@ -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++)
|
||||
|
||||
Reference in New Issue
Block a user