/x86asmHelloWorld

Hello world in 32-bit X86 asm

Primary LanguageAssembly

Hello world in assembly

##Compiled with:

as 001.asm --32 -o 001.o
gcc -o 001.elf -m32 001.o -nostdlib

Simple first project, based off the Low Level Learning tutorial.