Skip to content

Instantly share code, notes, and snippets.

View an0th3rhuman's full-sized avatar
👋
Hi there!

Raghul M an0th3rhuman

👋
Hi there!
View GitHub Profile
@sivaramaaa
sivaramaaa / hello.asm
Created April 28, 2016 16:09
Hello world in ASM
extern printf
section .data
msg : db "Welcome to low level assembly language x86",10,0
section .text
global main
main:
push ebp ; crearing stack frame