Starting to build a codebase for messing with assembly generation compatible with yasm

This commit is contained in:
2024-11-29 14:31:38 -05:00
parent 531daa38c1
commit 80c830b59d
18 changed files with 26940 additions and 1 deletions

View File

@ -1,6 +1,9 @@
$misc = join-path $PSScriptRoot 'helpers/misc.ps1'
. $misc
$update_deps = join-path $PSScriptRoot 'update_deps.ps1'
. $update_deps
$path_root = git rev-parse --show-toplevel
$path_build = join-path $path_root 'build'
$path_scripts = join-path $path_root 'scripts'

15
scripts/update_deps.ps1 Normal file
View File

@ -0,0 +1,15 @@
$misc = join-path $PSScriptRoot 'helpers/misc.ps1'
. $misc
$path_root = git rev-parse --show-toplevel
$path_build = join-path $path_root 'build'
$path_scripts = join-path $path_root 'scripts'
$path_source = join-path $path_root 'source'
$path_toolchain = join-path $path_root 'toolchain'
$url_yasm = 'https://github.com/yasm/yasm.git'
$path_yasm = join-path $path_toolchain 'yasm'
$path_libyasm = join-path $path_yasm 'libyasm'
clone-gitrepo $path_yasm $url_yasm