mirror of
https://github.com/geohot/qira
synced 2025-02-21 00:44:42 +03:00
7 lines
100 B
Bash
Executable File
7 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
nasm -f elf $1.asm
|
|
gcc -m32 $1.o -o a.out -nostartfiles -nostdlib -nodefaultlibs
|
|
|