- 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

- Uncategorized

Election Voting System using 8051 microcontroller -C Code | CodesExplorer

Election Voting System using 8051(AT89C51) MicroController with Embedded C. This code is verified in Trainer Kit System Designed by ALS(Advanced Electronics Systems).The Election Voting System is interfaced using keypad and LCD with 8051 Microcontroller. ; 8051 ASSEMBLY CODE — CODESEXPLORER BLOG; ELECTION VOTING SYSTEM; PROGRAMMER NAME: ABHAY KAGALKAR#include<at89c51xd2.h&rt;sbit RS=P1^7;sbit EN=P1^6;void…

Read More

- Uncategorized

Data Structures using C language

      Data structures is a set of algorithms, used for organizing  data so that it can be used efficiently.  There different data structure algorithms for different applications. Stacks, Queues, Linked lists, Trees etc., are important concepts of data structures. To understand Data structures, one should know about structures and…

Read More