fillmem.s

This commit is contained in:
2025-08-02 00:44:27 -04:00
parent 1117d99090
commit fc54c87300
7 changed files with 67 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
$path_root = split-path -Path $PSScriptRoot -Parent
$path_build = join-path $path_root 'build'
$path_code = join-path $path_root 'code'
if ((test-path $path_build) -eq $false) {
new-item -itemtype directory -path $path_build
}
$armips = 'armips'
$path_fillmem = join-path $path_code 'fillmem'
$src_fillmem = join-path $path_fillmem 'fillmem.s'
push-location $path_build
& $armips $src_fillmem
pop-location