diff options
| author | mo khan <mo@mokhan.ca> | 2025-01-23 10:57:09 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-01-23 10:57:09 -0700 |
| commit | 99c88ec429f73b614ece45b45ee482c8f9f8e059 (patch) | |
| tree | 2d6b3c95e53d0505617070a71d00496f30c7c48b /assignments/3/Makefile | |
| parent | 7031e53d352b3b8cb7e9e403a48818ff585b6bc2 (diff) | |
learn assembly
Diffstat (limited to 'assignments/3/Makefile')
| -rw-r--r-- | assignments/3/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/assignments/3/Makefile b/assignments/3/Makefile index 8c3bc0c..75f6584 100644 --- a/assignments/3/Makefile +++ b/assignments/3/Makefile @@ -11,3 +11,8 @@ numbers.txt: run: main.exe numbers.txt ./main.exe < numbers.txt + +manual: max_min.s + as --64 -o max_min.o max_min.s + ld -o max_min.exe max_min.o + ./max_min.exe |
