Browse Source
Fix some mangling I did t- returned to original
pull/16/head
b1ackmai1er
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
4 deletions
-
Source/HBIOS/Build.ps1
|
|
|
@ -119,10 +119,7 @@ Function Asm($Component, $Opt, $Architecture=$CPUType, $Output="${Component}.bin |
|
|
|
$Cmd = "tasm -t${Architecture} -g3 ${Opt} ${Component}.asm ${Output} ${List}" |
|
|
|
$Cmd | write-host |
|
|
|
Invoke-Expression $Cmd | write-host |
|
|
|
if ($LASTEXITCODE -gt 0) |
|
|
|
{ |
|
|
|
throw "TASM returned exit code" + $LASTEXITCODE |
|
|
|
} |
|
|
|
if ($LASTEXITCODE -gt 0) {throw "TASM returned exit code $LASTEXITCODE"} |
|
|
|
} |
|
|
|
|
|
|
|
# Function to concatenate two binary files. |
|
|
|
|