checking in all chnages, including todays play with gnu-as

This commit is contained in:
Joe Tretter
2026-08-05 14:40:34 -05:00
parent e29dc737ad
commit 43e0146f6f
12 changed files with 100 additions and 0 deletions

7
gnu-asm/hello1/run.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
as --64 -o hello.o hello.s
ld -o hello hello.o
cp hello hello.stripped
strip --strip-all hello.stripped
./hello.stripped