mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1010 B
48 lines
1010 B
Param([Parameter(Mandatory)]$Disk)
|
|
|
|
$ErrorAction = 'Stop'
|
|
|
|
if (-not (Test-Path("d_${Disk}/")))
|
|
{
|
|
"Source directory d_${Disk} for disk ${Disk} not found!"
|
|
return
|
|
}
|
|
|
|
$CpmToolsPath = '../../Tools/cpmtools'
|
|
|
|
$env:PATH = $CpmToolsPath + ';' + $env:PATH
|
|
|
|
"Generating Hard Disk ${Disk}..."
|
|
|
|
$Blank = "".PadLeft((128KB * 65), 0xE5)
|
|
Set-Content -Value $Blank -NoNewLine -Path "hd_${Disk}.img"
|
|
|
|
for ($Usr=0; $Usr -lt 16; $Usr++)
|
|
{
|
|
if (Test-Path ("d_${Disk}/u${Usr}/*"))
|
|
{
|
|
$Cmd = "cpmcp -f wbw_hd0 hd_${Disk}.img d_${Disk}/u${Usr}/*.* ${Usr}:"
|
|
$Cmd
|
|
Invoke-Expression $Cmd
|
|
}
|
|
}
|
|
|
|
if (Test-Path("d_${Disk}.txt"))
|
|
{
|
|
foreach($Line in Get-Content "d_${Disk}.txt")
|
|
{
|
|
$Spec = $Line.Trim()
|
|
if (($Spec.Length -gt 0) -and ($Spec.Substring(0,1) -ne "#"))
|
|
{
|
|
$Cmd = "cpmcp -f wbw_hd0 hd_${Disk}.img ${Spec}"
|
|
$Cmd
|
|
Invoke-Expression $Cmd
|
|
}
|
|
}
|
|
}
|
|
|
|
"Moving image hd_${Disk}.img into output directory..."
|
|
|
|
&$env:COMSPEC /c move hd_${Disk}.img ..\..\Binary\
|
|
|
|
return
|