Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
6 views
Array Program COA(1)
Uploaded by
kalpmevada1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download now
Download
Save Array Program COA(1) For Later
Download
Save
Save Array Program COA(1) For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
6 views
Array Program COA(1)
Uploaded by
kalpmevada1
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download now
Download
Save Array Program COA(1) For Later
Carousel Previous
Carousel Next
Save
Save Array Program COA(1) For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 3
Search
Fullscreen
Program for storing Data into an Array
MVI C,05H
LXI H,0008H
MVI A,01H
STORE: MOV M,A
INX H
INR A
DCR C
JNZ STORE
HLT
Program for Adding All Elements in an Array
LXI H, 8000H ; HL points to the base address of the array
MVI C, 05H ; Set count (number of elements)
MVI A, 00H ; Clear the accumulator for summation
ADD_LOOP: MOV B, M ; Load array element intoB
ADD B ; Add the element to the accumulator
INX H ; Move to the next array element
DCR C ; Decrement count
JNZ ADD_LOOP ; Repeat until count becomes zero
STA 9000H ; Store the result at 9000H
HLT ; Halt the program
Program for Searching for a Specific Value in an Array
LXI H, 8000H ; HL points to the base address of the array
MVI C, 05H ; Set count (number of elements)
MVI A, 03H ; Search value
SEARCH:
CMP M ; Compare memory value with A
JZ FOUND ; If equal, jump to FOUND
INX H ; Move to the next array element
DCR C ; Decrement count
JNZ SEARCH ; Repeat until count becomes zero
JMP NOT_FOUND ; If not found, jump to NOT_FOUND
FOUND:LXI H, 9000H ; HL points to 9000H
MOV M, A ; Store the found value
HLT ; Halt the program
NOT_FOUND: HLT ; Halt the program
You might also like
4th Semester Microprocessor and Microcontroller Lab Manual: Program:1 ALGORITHM: Binary Search
PDF
No ratings yet
4th Semester Microprocessor and Microcontroller Lab Manual: Program:1 ALGORITHM: Binary Search
37 pages
Assembly Programming
PDF
No ratings yet
Assembly Programming
9 pages
Microprocessor Lab Assignment-9 Name - Kotecha Udit Hitendra Reg. No.-20194057 Group - CS-A
PDF
No ratings yet
Microprocessor Lab Assignment-9 Name - Kotecha Udit Hitendra Reg. No.-20194057 Group - CS-A
5 pages
MNI_2
PDF
No ratings yet
MNI_2
5 pages
8085 Assembly Language Programs
PDF
No ratings yet
8085 Assembly Language Programs
29 pages
Topic 5: 8086 Assembly Language Programming (24 Marks)
PDF
No ratings yet
Topic 5: 8086 Assembly Language Programming (24 Marks)
38 pages
Array Processing - Textbook Labs
PDF
No ratings yet
Array Processing - Textbook Labs
9 pages
Assignment MP
PDF
No ratings yet
Assignment MP
10 pages
Mml Lab Code_bit9
PDF
No ratings yet
Mml Lab Code_bit9
6 pages
Programs For 8085 Microprocessor Level 2
PDF
No ratings yet
Programs For 8085 Microprocessor Level 2
8 pages
Program To Generate Fibonacci Number
PDF
No ratings yet
Program To Generate Fibonacci Number
41 pages
Program To Generate Fibonacci Number
PDF
No ratings yet
Program To Generate Fibonacci Number
37 pages
Arithmetic
PDF
No ratings yet
Arithmetic
26 pages
8085 Programs-2 PDF
PDF
No ratings yet
8085 Programs-2 PDF
10 pages
MP Manual
PDF
No ratings yet
MP Manual
51 pages
Programming of 8085 Processor Unit Ii: Mr. S. Vinod Assistant Professor Eee Department
PDF
No ratings yet
Programming of 8085 Processor Unit Ii: Mr. S. Vinod Assistant Professor Eee Department
72 pages
FALLSEM2023-24 BECE204P LO CH2023240100965 Reference Material I 09-08-2023 Exp-1
PDF
No ratings yet
FALLSEM2023-24 BECE204P LO CH2023240100965 Reference Material I 09-08-2023 Exp-1
10 pages
Mic Final Qb
PDF
No ratings yet
Mic Final Qb
44 pages
Lab Programs 8086
PDF
50% (2)
Lab Programs 8086
37 pages
Search A Byte in A Given Number
PDF
No ratings yet
Search A Byte in A Given Number
4 pages
Microprocessors and Peripherals: Lab Programs - 2019
PDF
No ratings yet
Microprocessors and Peripherals: Lab Programs - 2019
40 pages
Imp 5 Answer
PDF
No ratings yet
Imp 5 Answer
9 pages
8085
PDF
100% (3)
8085
12 pages
8085_Assembly_Programs
PDF
No ratings yet
8085_Assembly_Programs
2 pages
amna2.asm assignment
PDF
No ratings yet
amna2.asm assignment
2 pages
C Akkka
PDF
No ratings yet
C Akkka
21 pages
Increment A Number 5 Times Using Inr
PDF
No ratings yet
Increment A Number 5 Times Using Inr
15 pages
MOD_3!4!8086 Assembly Language Programming - Basic Programs
PDF
No ratings yet
MOD_3!4!8086 Assembly Language Programming - Basic Programs
25 pages
Problem Set-2
PDF
No ratings yet
Problem Set-2
16 pages
Coa Program
PDF
No ratings yet
Coa Program
4 pages
CH 5
PDF
No ratings yet
CH 5
38 pages
Microprocessor File
PDF
No ratings yet
Microprocessor File
50 pages
Lab3.pptx
PDF
No ratings yet
Lab3.pptx
19 pages
MIC FINAL QB[1]
PDF
No ratings yet
MIC FINAL QB[1]
5 pages
Microprocessor Lab Manual (Software Programs) : "Introduction To Microprocessors - 8086"
PDF
No ratings yet
Microprocessor Lab Manual (Software Programs) : "Introduction To Microprocessors - 8086"
29 pages
Mml Lab Code_bit
PDF
No ratings yet
Mml Lab Code_bit
47 pages
Assembly Sample Programs
PDF
No ratings yet
Assembly Sample Programs
10 pages
8086 ALP'S
PDF
No ratings yet
8086 ALP'S
41 pages
MPMC Software
PDF
No ratings yet
MPMC Software
9 pages
8085 Microprocessor Programs 1. Statement:: Store The Data Byte 32H Into Memory Location 4000H
PDF
No ratings yet
8085 Microprocessor Programs 1. Statement:: Store The Data Byte 32H Into Memory Location 4000H
19 pages
Programs: Prof. SARANYA.K.C Sense VIT
PDF
No ratings yet
Programs: Prof. SARANYA.K.C Sense VIT
8 pages
Assembly Lab-7
PDF
No ratings yet
Assembly Lab-7
9 pages
8086 Software Programs
PDF
0% (1)
8086 Software Programs
29 pages
Computer Oraganisation Lab Complete Code
PDF
No ratings yet
Computer Oraganisation Lab Complete Code
14 pages
Microprocessors (CEC10) Lab File: Pratyush Goel 2016UCO1687 COE-3 Batch-2
PDF
No ratings yet
Microprocessors (CEC10) Lab File: Pratyush Goel 2016UCO1687 COE-3 Batch-2
25 pages
Commodore Machine Language
PDF
100% (2)
Commodore Machine Language
112 pages
Data Structures
PDF
No ratings yet
Data Structures
43 pages
MIC
PDF
No ratings yet
MIC
26 pages
MIROPROCESSOR_LAB_23_24-30.09.24
PDF
No ratings yet
MIROPROCESSOR_LAB_23_24-30.09.24
31 pages
10 - LAB - COAL ok-FF PDF
PDF
No ratings yet
10 - LAB - COAL ok-FF PDF
11 pages
Microprocessors and Microcontrollers LAB: Aditya Engineering College (A)
PDF
No ratings yet
Microprocessors and Microcontrollers LAB: Aditya Engineering College (A)
36 pages
Assembly Programming Example
PDF
No ratings yet
Assembly Programming Example
10 pages
CSO Cache Memory Numericals
PDF
No ratings yet
CSO Cache Memory Numericals
12 pages
Mod4 3 8051 Instrns
PDF
No ratings yet
Mod4 3 8051 Instrns
20 pages
EC-407 VHDL Programming File
PDF
No ratings yet
EC-407 VHDL Programming File
12 pages
A Short History of The Discovery of Black Holes
PDF
No ratings yet
A Short History of The Discovery of Black Holes
4 pages
Hostel Fees 2023
PDF
No ratings yet
Hostel Fees 2023
1 page
Gujcet Payment 2024
PDF
No ratings yet
Gujcet Payment 2024
1 page
Gujcet Payment 2024 FINAL
PDF
No ratings yet
Gujcet Payment 2024 FINAL
1 page
12th Chemistry Most IMP Theory EM - 2024 Ajay Jadeja
PDF
No ratings yet
12th Chemistry Most IMP Theory EM - 2024 Ajay Jadeja
12 pages