#!/usr/bin/bash

nasm -f elf hello.asm
ld -m elf_i386 hello.o -o foo
./foo # just to see it work
