Skip to content

Instantly share code, notes, and snippets.

View sivaramaaa's full-sized avatar

sivaramaaa

View GitHub Profile
@sivaramaaa
sivaramaaa / Fibonacci_Sequence.asm
Created April 29, 2016 17:12
Fibonacci Series of n number
extern printf
extern scanf
section .data
prompt: db "Enter no of terms in fibbonoci series",10,0
fmts: db "%d",0
n : dd 0
a: dd 0
b: dd 1
section .text
@sivaramaaa
sivaramaaa / prime.asm
Last active May 25, 2016 09:29
Check_prime
extern printf
extern scanf
section .data
fmts: db "%d",0
prompt: db "Enter the number ",10,0
msg2: db "It is prime ",10,0
msg3: db "It is not a prime ",10,0
num1: dd 0
num2: dd 2
@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