mirror of
https://github.com/geohot/qira
synced 2025-02-16 06:24:16 +03:00
7 lines
97 B
Bash
Executable File
7 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
nasm -f elf64 $1.asm
|
|
gcc $1.o -o a.out -nostartfiles -nostdlib -nodefaultlibs
|
|
|