- Uncategorized

Smallest of N numbers ARM Assembly Code

ARM Assembly Code to find smallest of N numbers and store value in memory  This code is tested in Keil uVision 4. Developed for ARM LPC2148 by Abhay Kagalkar  ARM Code : ;/*Program to find smallest of N numbers*/;/* By Abhay Kagalkar*/ AREA arr,codeENTRYmain ldr r0,=data1 ldr r3,=0x40000000 ldr r4,=0x05…

Read More

- Uncategorized

Stack: Data Structure algorithm

stack Stack is a data structure which has ordered list of similar data type. Stack is a Last In First Out (LIFO) structure. In simple words, stack is a like a bag; whatever you put at last comes out first. Now, lets understand the algorithm for stack. start Display push…

Read More