7 lines
178 B
Bash
Executable File
7 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
nasm -g -felf64 out.asm -o out.o
|
|
nasm -g -felf64 ../input/core/strlen.asm -o strlen.o
|
|
nasm -g -felf64 ../input/core/util.asm -o util.o
|
|
|
|
ld -o out strlen.o util.o out.o
|