SlideShare ist ein Scribd-Unternehmen logo
1 von 21
EC1258 – MICROPROCESSOR LAB
MINI PROJECT
ELECTRONIC QUIZ
TABLE
SUBMITTED BY
SUBHASHINI.S
Department of IT
CONCEPT
 This project can be used in Quiz competitions.
 The circuit is based on Microprocessor.
 Simultaneously five players can participate in this game.
 It has five separate LED’s to indicate who has pressed
the key and it also display the number on the seven
segment display of the microprocessor kit.
ELECTRONIC QUIZ TABLE
CONCEPT
Continue…
 The Reset switch is used to reset all the switches and
the circuit will get ready for the next round.
 The above system is monitored and controlled by the
8 bit microprocessor 8085 and using the Ports of 8255.
ELECTRONIC QUIZ TABLE
CONCEPT
Continue…
 The Microprocessor continuously monitors the five
switches and if any one of the switch is pressed then it
latches the switch and the microprocessor switch on
the corresponding LED and display the number in the
seven segment switch.
 A Buzzer sound is also produced to indicate that some
one has pressed any one of the Switch.
ELECTRONIC QUIZ TABLE
BLOCK DIAGRAM
ELECTRONIC QUIZ TABLE
FLOW CHART
ELECTRONIC QUIZ TABLE
CIRCUIT DIAGRAM
ELECTRONIC QUIZ TABLE
SOURCE CODE
0000 PORTA EQU 0CH
0000 PORTB EQU 0DH
0000 REG EQU 0EH
0000 ORG 4100H
4100 3E 94 MVI A,94H
4102 D3 0E OUT REG
4104 3E DF MVI A,11011111B
4106 D3 0D OUT PORTB
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
4108 DB 0C TOP: IN PORTA ;get switch1 status
410A E6 02 ANI 00000010B ;check first button
410C C2 2E 41 JNZ SW1
410F DB 0C IN PORTA ;get switch2 status
4111 E6 04 ANI 00000100B ;check second button
4113 C2 38 41 JNZ SW2
4116 DB 0C IN PORTA ;get switch3 status
4118 E6 08 ANI 00001000B ;check third button
411A C2 42 41 JNZ SW3
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
411D DB 0C IN PORTA ;get switch4 status
411F E6 10 ANI 00010000B ;check fourth button
4121 C2 4C 41 JNZ SW4
4124 DB 0C IN PORTA ;get switch5 status
4126 E6 20 ANI 00100000B ;check fifth button
4128 C2 56 41 JNZ SW5
412B C3 08 41 JMP TOP
412E 3E FE SW1: MVI A,11111110 B ;switch ON 1 LED
4130 D3 0D OUT PORTB
4132 CD 70 41 CALL DELAY
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
4135 C3 5D 41 JMP DOWN
4138 3E FD SW2: MVI A,11111101B ;switch ON 2 LED
413A D3 0D OUT PORTB
413C CD 70 41 CALL DELAY
413F C3 5D 41 JMP DOWN
4142 3E FB SW3: MVI A,11111011B ;switch ON 3 LED
4144 D3 0D OUT PORTB
4146 CD 70 41 CALL DELAY
4149 C3 5D 41 JMP DOWN
414C 3E F7 SW4: MVI A,11110111B ;switch ON 4 LED
414E D3 0D OUT PORTB
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
4150 CD 70 41 CALL DELAY
4153 C3 5D 41 JMP DOWN
4156 3E EF SW5: MVI A,11101111B ;switch ON 5 LED
4158 D3 0D OUT PORTB
415A CD 70 41 CALL DELAY
415D 79 DOWN: MOV A,C
415E E6 1F ANI 1FH
4160 D3 0D OUT PORTB
4162 DB 0C D1: IN PORTA
4164 E6 01 ANI 01H
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
4166 CA 62 41 JZ D1
4169 3E DF MVI A,11011111B
416B D3 0D OUT PORTB
416D C3 08 41 JMP TOP
4170 DELAY:
4170 4F MOV C,A
4171 06 02 MVI B,02H
4173 11 0F 00 LOOP1: LXI D,0FH
4176 1B LOOP: DCX D
4177 7B MOV A,E
ELECTRONIC QUIZ TABLE
SOURCE CODE
Continue…
4178 B2 ORA D
4179 C2 76 41 JNZ LOOP
417C 05 DCR B
417D C2 73 41 JNZ LOOP1
4180 C9 RET
4181 END
ELECTRONIC QUIZ TABLE
WORK FLOW
Move The Immediate data 1101111 B to Accumulator
Get the Status of Switch 1
To Check the first Button - Perform the Immediate AND Operation 0000010
With ACC value 1101111 B
1 1 0 1 1 1 1 1
0 0 0 0 0 0 1 0
0 0 0 0 0 0 1 0
If no zero Jump To sw1
ELECTRONIC QUIZ TABLE
WORK FLOW
SWITCH ON LED ONE
move the data to Acc 1111 1110 B
Call the Delay Program
In Delay
Move the Acc value to C Register
And load the OF H (0000 11111 B)value to DE register Pair
Perform the logical ORA Operation
Then Jump Down ELECTRONIC QUIZ TABLE
WORK FLOW
In Jump
Move C register Value to Accumulator
Perform the Immediate AND Operation with the value(0F H)
Finally Reset the Acc Value with 1101111 B
Like Wise all the switches are tested.
ELECTRONIC QUIZ TABLE
Initially all LEDs set to off
ELECTRONIC QUIZ TABLE
Microprocessor Found the switch then the led will glow and buzzer is on
ELECTRONIC QUIZ TABLE
Microprocessor Found the pressed switch then the led will glow and buzzer is on the
No shown the 7 – Segment LED
SEVEN DEGMENT LED
ELECTRONIC QUIZ TABLE
Micro Processor Mini Project,Electronic Quiz Table

Weitere ähnliche Inhalte

Was ist angesagt?

BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATIONBLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
Varun Divekar
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-ppt
jemimajerome
 
Interfacing technique with 8085- ADC[0808]
Interfacing technique with 8085- ADC[0808]Interfacing technique with 8085- ADC[0808]
Interfacing technique with 8085- ADC[0808]
Guhan k
 
Project report of Cell phone detector circuit
Project report of Cell phone detector circuitProject report of Cell phone detector circuit
Project report of Cell phone detector circuit
Moin Aman
 
Electronic Voting Machine
Electronic Voting MachineElectronic Voting Machine
Electronic Voting Machine
Chanda Thakur
 

Was ist angesagt? (20)

BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATIONBLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
BLUETOOTH CONTROL ROBOT WITH ANDROID APPLICATION
 
Seven segment display
Seven segment display Seven segment display
Seven segment display
 
8086-instruction-set-ppt
 8086-instruction-set-ppt 8086-instruction-set-ppt
8086-instruction-set-ppt
 
8051 Addressing Modes
8051 Addressing Modes8051 Addressing Modes
8051 Addressing Modes
 
Electromagnetic Interference & Electromagnetic Compatibility
Electromagnetic Interference  & Electromagnetic CompatibilityElectromagnetic Interference  & Electromagnetic Compatibility
Electromagnetic Interference & Electromagnetic Compatibility
 
An application of 8085 register interfacing with LED
An application  of 8085 register interfacing with LEDAn application  of 8085 register interfacing with LED
An application of 8085 register interfacing with LED
 
7 segment led interfacing with 8051
7 segment led interfacing with 80517 segment led interfacing with 8051
7 segment led interfacing with 8051
 
Interrupts in 8051
Interrupts in 8051Interrupts in 8051
Interrupts in 8051
 
interfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdfinterfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdf
 
Interfacing technique with 8085- ADC[0808]
Interfacing technique with 8085- ADC[0808]Interfacing technique with 8085- ADC[0808]
Interfacing technique with 8085- ADC[0808]
 
Project report of Cell phone detector circuit
Project report of Cell phone detector circuitProject report of Cell phone detector circuit
Project report of Cell phone detector circuit
 
"BCD TO 7 SEGMENT DISPLAY DECODER"
"BCD TO 7 SEGMENT DISPLAY DECODER""BCD TO 7 SEGMENT DISPLAY DECODER"
"BCD TO 7 SEGMENT DISPLAY DECODER"
 
8051 memory
8051 memory8051 memory
8051 memory
 
Electronic Voting Machine
Electronic Voting MachineElectronic Voting Machine
Electronic Voting Machine
 
Bcd to 7 segment display
Bcd to 7 segment displayBcd to 7 segment display
Bcd to 7 segment display
 
Timing diagram 8085 microprocessor
Timing diagram 8085 microprocessorTiming diagram 8085 microprocessor
Timing diagram 8085 microprocessor
 
Lcd
LcdLcd
Lcd
 
Unit II Arm 7 Introduction
Unit II Arm 7 IntroductionUnit II Arm 7 Introduction
Unit II Arm 7 Introduction
 
Seven Segment Display
Seven Segment DisplaySeven Segment Display
Seven Segment Display
 
Addressing modes
Addressing modesAddressing modes
Addressing modes
 

Andere mochten auch

microcontroller based temperature sensor
microcontroller based temperature sensormicrocontroller based temperature sensor
microcontroller based temperature sensor
Derrick D'souza
 
Temp based fan speed control
Temp based fan speed controlTemp based fan speed control
Temp based fan speed control
Sai Malleswar
 
MICROPROCESSOR 8085 WITH PROGRAMS
MICROPROCESSOR 8085 WITH PROGRAMSMICROPROCESSOR 8085 WITH PROGRAMS
MICROPROCESSOR 8085 WITH PROGRAMS
Sabin Gautam
 
Ec2308 mini project
Ec2308 mini projectEc2308 mini project
Ec2308 mini project
unnimaya_k
 
Classification of comp.16
Classification of comp.16Classification of comp.16
Classification of comp.16
myrajendra
 
black jack using vhdl
black jack using vhdlblack jack using vhdl
black jack using vhdl
Derrick D'souza
 
College quiz buzzer
College quiz buzzerCollege quiz buzzer
College quiz buzzer
viv3ksharma
 

Andere mochten auch (20)

Number Guessing Game - A 8085 Project
Number Guessing Game - A 8085 ProjectNumber Guessing Game - A 8085 Project
Number Guessing Game - A 8085 Project
 
TRAFFIC LIGHT CONTROL SYSTEM USING 8085 MICROPROCESSOR
TRAFFIC LIGHT CONTROL SYSTEM USING 8085 MICROPROCESSORTRAFFIC LIGHT CONTROL SYSTEM USING 8085 MICROPROCESSOR
TRAFFIC LIGHT CONTROL SYSTEM USING 8085 MICROPROCESSOR
 
Microprocessor based Temperature Controller
Microprocessor based Temperature ControllerMicroprocessor based Temperature Controller
Microprocessor based Temperature Controller
 
PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085PART -1 TRAFFIC LIGHT CONTROL USING 8085
PART -1 TRAFFIC LIGHT CONTROL USING 8085
 
microcontroller based temperature sensor
microcontroller based temperature sensormicrocontroller based temperature sensor
microcontroller based temperature sensor
 
Electronics Quiz
Electronics QuizElectronics Quiz
Electronics Quiz
 
Temp based fan speed control
Temp based fan speed controlTemp based fan speed control
Temp based fan speed control
 
TEMPERATURE BASED FAN SPEED CONTROLLER
TEMPERATURE  BASED  FAN  SPEED  CONTROLLERTEMPERATURE  BASED  FAN  SPEED  CONTROLLER
TEMPERATURE BASED FAN SPEED CONTROLLER
 
Applications of microprocessor
Applications of microprocessorApplications of microprocessor
Applications of microprocessor
 
List of 8085 programs
List of 8085 programsList of 8085 programs
List of 8085 programs
 
Microprocessor-Based Automatic Door Opener
Microprocessor-Based Automatic Door OpenerMicroprocessor-Based Automatic Door Opener
Microprocessor-Based Automatic Door Opener
 
MICROPROCESSOR 8085 WITH PROGRAMS
MICROPROCESSOR 8085 WITH PROGRAMSMICROPROCESSOR 8085 WITH PROGRAMS
MICROPROCESSOR 8085 WITH PROGRAMS
 
Ec2308 mini project
Ec2308 mini projectEc2308 mini project
Ec2308 mini project
 
Quizbank quiz buzzer
Quizbank quiz buzzer Quizbank quiz buzzer
Quizbank quiz buzzer
 
Microprocessor and Interfacing Lab Notes - Akshansh
Microprocessor and Interfacing Lab Notes - AkshanshMicroprocessor and Interfacing Lab Notes - Akshansh
Microprocessor and Interfacing Lab Notes - Akshansh
 
Classification of comp.16
Classification of comp.16Classification of comp.16
Classification of comp.16
 
black jack using vhdl
black jack using vhdlblack jack using vhdl
black jack using vhdl
 
Proyecto Poogame Blackjack
Proyecto Poogame BlackjackProyecto Poogame Blackjack
Proyecto Poogame Blackjack
 
Instruction set of intel 8085 microprocessor
Instruction set of intel 8085 microprocessorInstruction set of intel 8085 microprocessor
Instruction set of intel 8085 microprocessor
 
College quiz buzzer
College quiz buzzerCollege quiz buzzer
College quiz buzzer
 

Ähnlich wie Micro Processor Mini Project,Electronic Quiz Table

PLC Ladder Programming [Mechatronics]
PLC Ladder Programming [Mechatronics]PLC Ladder Programming [Mechatronics]
PLC Ladder Programming [Mechatronics]
Dr. S.N. Teli
 
Chapter 4 flip flop for students
Chapter 4 flip flop for studentsChapter 4 flip flop for students
Chapter 4 flip flop for students
CT Sabariah Salihin
 
PLC Circuit Design And Basic Programming By Manish kumar
PLC Circuit Design And Basic Programming By Manish kumarPLC Circuit Design And Basic Programming By Manish kumar
PLC Circuit Design And Basic Programming By Manish kumar
manishkumarm
 
Applications of microcontroller(8051)
Applications of microcontroller(8051) Applications of microcontroller(8051)
Applications of microcontroller(8051)
vijaydeepakg
 

Ähnlich wie Micro Processor Mini Project,Electronic Quiz Table (20)

Dee2034 chapter 5 counter
Dee2034 chapter 5 counterDee2034 chapter 5 counter
Dee2034 chapter 5 counter
 
Dee2034 chapter 6 register
Dee2034 chapter 6 registerDee2034 chapter 6 register
Dee2034 chapter 6 register
 
Chapter 5 counter
Chapter 5 counterChapter 5 counter
Chapter 5 counter
 
Chapter 6 register
Chapter 6 registerChapter 6 register
Chapter 6 register
 
Steppert Motor Interfacing With Specific Angle Entered Through Keypad
Steppert Motor Interfacing With Specific Angle Entered Through KeypadSteppert Motor Interfacing With Specific Angle Entered Through Keypad
Steppert Motor Interfacing With Specific Angle Entered Through Keypad
 
Chapter 5 counter1
Chapter 5 counter1Chapter 5 counter1
Chapter 5 counter1
 
PLC Ladder Programming [Mechatronics]
PLC Ladder Programming [Mechatronics]PLC Ladder Programming [Mechatronics]
PLC Ladder Programming [Mechatronics]
 
Lab 9 D-Flip Flops: Shift Register and Sequence Counter
Lab 9 D-Flip Flops: Shift Register and Sequence CounterLab 9 D-Flip Flops: Shift Register and Sequence Counter
Lab 9 D-Flip Flops: Shift Register and Sequence Counter
 
counter using 4 master slave flip-flops
counter using 4 master slave flip-flops counter using 4 master slave flip-flops
counter using 4 master slave flip-flops
 
Mitsubishi lap trinh plc afdf afaf
Mitsubishi lap trinh plc afdf afafMitsubishi lap trinh plc afdf afaf
Mitsubishi lap trinh plc afdf afaf
 
Chapter 4 flip flop for students
Chapter 4 flip flop for studentsChapter 4 flip flop for students
Chapter 4 flip flop for students
 
PLC Circuit Design And Basic Programming By Manish kumar
PLC Circuit Design And Basic Programming By Manish kumarPLC Circuit Design And Basic Programming By Manish kumar
PLC Circuit Design And Basic Programming By Manish kumar
 
Dee2034 chapter 4 flip flop for students part
Dee2034 chapter 4 flip flop  for students partDee2034 chapter 4 flip flop  for students part
Dee2034 chapter 4 flip flop for students part
 
8051 FINIAL
8051 FINIAL8051 FINIAL
8051 FINIAL
 
L544
L544L544
L544
 
MPMC LAB MANUAL EEE
MPMC LAB MANUAL EEEMPMC LAB MANUAL EEE
MPMC LAB MANUAL EEE
 
ISL97684 Led Driver Evaluation Board User Manual
ISL97684 Led Driver Evaluation Board User ManualISL97684 Led Driver Evaluation Board User Manual
ISL97684 Led Driver Evaluation Board User Manual
 
Appron feeder common ckt-diagram
Appron feeder common ckt-diagramAppron feeder common ckt-diagram
Appron feeder common ckt-diagram
 
Applications of microcontroller(8051)
Applications of microcontroller(8051) Applications of microcontroller(8051)
Applications of microcontroller(8051)
 
Cataloge ge 3.control and_automation-31_vat300_e_appendix3_5_rev_a
Cataloge ge 3.control and_automation-31_vat300_e_appendix3_5_rev_aCataloge ge 3.control and_automation-31_vat300_e_appendix3_5_rev_a
Cataloge ge 3.control and_automation-31_vat300_e_appendix3_5_rev_a
 

KĂźrzlich hochgeladen

Dubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in DubaiDubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in Dubai
Monica Sydney
 
Ghansoli Escorts Services 09167354423 Ghansoli Call Girls,Call Girls In Ghan...
Ghansoli Escorts Services 09167354423  Ghansoli Call Girls,Call Girls In Ghan...Ghansoli Escorts Services 09167354423  Ghansoli Call Girls,Call Girls In Ghan...
Ghansoli Escorts Services 09167354423 Ghansoli Call Girls,Call Girls In Ghan...
Priya Reddy
 
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
call girls kolkata
 
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
call girls kolkata
 
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service HaridwarHaridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
ranekokila
 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girls
Monica Sydney
 
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
call girls kolkata
 

KĂźrzlich hochgeladen (20)

Call Girls Bijnor Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Bijnor  Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Bijnor  Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Bijnor Just Call 8617370543 Top Class Call Girl Service Available
 
Bhubaneswar🌹Call Girls Rasulgada ❤Komal 9777949614 💟 Full Trusted CALL GIRLS ...
Bhubaneswar🌹Call Girls Rasulgada ❤Komal 9777949614 💟 Full Trusted CALL GIRLS ...Bhubaneswar🌹Call Girls Rasulgada ❤Komal 9777949614 💟 Full Trusted CALL GIRLS ...
Bhubaneswar🌹Call Girls Rasulgada ❤Komal 9777949614 💟 Full Trusted CALL GIRLS ...
 
Call Girls Belonia Just Call 📞 8617370543 Top Class Call Girl Service Available
Call Girls Belonia Just Call 📞 8617370543 Top Class Call Girl Service AvailableCall Girls Belonia Just Call 📞 8617370543 Top Class Call Girl Service Available
Call Girls Belonia Just Call 📞 8617370543 Top Class Call Girl Service Available
 
Dubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in DubaiDubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in Dubai
 
Unnao 💋 Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao 💋 Call Girl 8617370543 Call Girls in unnao Escort service book nowUnnao 💋 Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao 💋 Call Girl 8617370543 Call Girls in unnao Escort service book now
 
Ghansoli Escorts Services 09167354423 Ghansoli Call Girls,Call Girls In Ghan...
Ghansoli Escorts Services 09167354423  Ghansoli Call Girls,Call Girls In Ghan...Ghansoli Escorts Services 09167354423  Ghansoli Call Girls,Call Girls In Ghan...
Ghansoli Escorts Services 09167354423 Ghansoli Call Girls,Call Girls In Ghan...
 
Bhubaneswar🌹Call Girls Chandrashekharpur ❤Komal 9777949614 💟 Full Trusted CAL...
Bhubaneswar🌹Call Girls Chandrashekharpur ❤Komal 9777949614 💟 Full Trusted CAL...Bhubaneswar🌹Call Girls Chandrashekharpur ❤Komal 9777949614 💟 Full Trusted CAL...
Bhubaneswar🌹Call Girls Chandrashekharpur ❤Komal 9777949614 💟 Full Trusted CAL...
 
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Gorakhpur Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
 
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
 
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
Call Girls in Ernakulam - 9332606886 Our call girls are sure to provide you w...
 
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar 🐱‍🏍 9777949614 Independent Escorts Service Bhubane...
 
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service HaridwarHaridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
 
Badshah Nagar ] Call Girls Service Lucknow | Starting ₹,5K To @25k with A/C 9...
Badshah Nagar ] Call Girls Service Lucknow | Starting ₹,5K To @25k with A/C 9...Badshah Nagar ] Call Girls Service Lucknow | Starting ₹,5K To @25k with A/C 9...
Badshah Nagar ] Call Girls Service Lucknow | Starting ₹,5K To @25k with A/C 9...
 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girls
 
Bhubaneswar🌹Call Girls Kalpana Mesuem ❤Komal 9777949614 💟 Full Trusted CALL ...
Bhubaneswar🌹Call Girls Kalpana Mesuem  ❤Komal 9777949614 💟 Full Trusted CALL ...Bhubaneswar🌹Call Girls Kalpana Mesuem  ❤Komal 9777949614 💟 Full Trusted CALL ...
Bhubaneswar🌹Call Girls Kalpana Mesuem ❤Komal 9777949614 💟 Full Trusted CALL ...
 
Deira call girls 0507330913 Call girls in Deira
Deira call girls 0507330913  Call girls in DeiraDeira call girls 0507330913  Call girls in Deira
Deira call girls 0507330913 Call girls in Deira
 
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
Call girls Service Dombivli - 9332606886 Our call girls are sure to provide y...
 
Satara call girl 8617370543♥️ call girls in satara escort service
Satara call girl 8617370543♥️ call girls in satara escort serviceSatara call girl 8617370543♥️ call girls in satara escort service
Satara call girl 8617370543♥️ call girls in satara escort service
 
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls AgencyHire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
Hire 💕 8617370543 Kushinagar Call Girls Service Call Girls Agency
 
Bhubaneswar🌹Patia ❤CALL GIRLS 9777949614 💟 CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❤CALL GIRLS 9777949614 💟 CALL GIRLS IN bhubaneswar ESCORT S...Bhubaneswar🌹Patia ❤CALL GIRLS 9777949614 💟 CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❤CALL GIRLS 9777949614 💟 CALL GIRLS IN bhubaneswar ESCORT S...
 

Micro Processor Mini Project,Electronic Quiz Table

  • 1. EC1258 – MICROPROCESSOR LAB MINI PROJECT ELECTRONIC QUIZ TABLE SUBMITTED BY SUBHASHINI.S Department of IT
  • 2. CONCEPT  This project can be used in Quiz competitions.  The circuit is based on Microprocessor.  Simultaneously five players can participate in this game.  It has five separate LED’s to indicate who has pressed the key and it also display the number on the seven segment display of the microprocessor kit. ELECTRONIC QUIZ TABLE
  • 3. CONCEPT Continue…  The Reset switch is used to reset all the switches and the circuit will get ready for the next round.  The above system is monitored and controlled by the 8 bit microprocessor 8085 and using the Ports of 8255. ELECTRONIC QUIZ TABLE
  • 4. CONCEPT Continue…  The Microprocessor continuously monitors the five switches and if any one of the switch is pressed then it latches the switch and the microprocessor switch on the corresponding LED and display the number in the seven segment switch.  A Buzzer sound is also produced to indicate that some one has pressed any one of the Switch. ELECTRONIC QUIZ TABLE
  • 8. SOURCE CODE 0000 PORTA EQU 0CH 0000 PORTB EQU 0DH 0000 REG EQU 0EH 0000 ORG 4100H 4100 3E 94 MVI A,94H 4102 D3 0E OUT REG 4104 3E DF MVI A,11011111B 4106 D3 0D OUT PORTB ELECTRONIC QUIZ TABLE
  • 9. SOURCE CODE Continue… 4108 DB 0C TOP: IN PORTA ;get switch1 status 410A E6 02 ANI 00000010B ;check first button 410C C2 2E 41 JNZ SW1 410F DB 0C IN PORTA ;get switch2 status 4111 E6 04 ANI 00000100B ;check second button 4113 C2 38 41 JNZ SW2 4116 DB 0C IN PORTA ;get switch3 status 4118 E6 08 ANI 00001000B ;check third button 411A C2 42 41 JNZ SW3 ELECTRONIC QUIZ TABLE
  • 10. SOURCE CODE Continue… 411D DB 0C IN PORTA ;get switch4 status 411F E6 10 ANI 00010000B ;check fourth button 4121 C2 4C 41 JNZ SW4 4124 DB 0C IN PORTA ;get switch5 status 4126 E6 20 ANI 00100000B ;check fifth button 4128 C2 56 41 JNZ SW5 412B C3 08 41 JMP TOP 412E 3E FE SW1: MVI A,11111110 B ;switch ON 1 LED 4130 D3 0D OUT PORTB 4132 CD 70 41 CALL DELAY ELECTRONIC QUIZ TABLE
  • 11. SOURCE CODE Continue… 4135 C3 5D 41 JMP DOWN 4138 3E FD SW2: MVI A,11111101B ;switch ON 2 LED 413A D3 0D OUT PORTB 413C CD 70 41 CALL DELAY 413F C3 5D 41 JMP DOWN 4142 3E FB SW3: MVI A,11111011B ;switch ON 3 LED 4144 D3 0D OUT PORTB 4146 CD 70 41 CALL DELAY 4149 C3 5D 41 JMP DOWN 414C 3E F7 SW4: MVI A,11110111B ;switch ON 4 LED 414E D3 0D OUT PORTB ELECTRONIC QUIZ TABLE
  • 12. SOURCE CODE Continue… 4150 CD 70 41 CALL DELAY 4153 C3 5D 41 JMP DOWN 4156 3E EF SW5: MVI A,11101111B ;switch ON 5 LED 4158 D3 0D OUT PORTB 415A CD 70 41 CALL DELAY 415D 79 DOWN: MOV A,C 415E E6 1F ANI 1FH 4160 D3 0D OUT PORTB 4162 DB 0C D1: IN PORTA 4164 E6 01 ANI 01H ELECTRONIC QUIZ TABLE
  • 13. SOURCE CODE Continue… 4166 CA 62 41 JZ D1 4169 3E DF MVI A,11011111B 416B D3 0D OUT PORTB 416D C3 08 41 JMP TOP 4170 DELAY: 4170 4F MOV C,A 4171 06 02 MVI B,02H 4173 11 0F 00 LOOP1: LXI D,0FH 4176 1B LOOP: DCX D 4177 7B MOV A,E ELECTRONIC QUIZ TABLE
  • 14. SOURCE CODE Continue… 4178 B2 ORA D 4179 C2 76 41 JNZ LOOP 417C 05 DCR B 417D C2 73 41 JNZ LOOP1 4180 C9 RET 4181 END ELECTRONIC QUIZ TABLE
  • 15. WORK FLOW Move The Immediate data 1101111 B to Accumulator Get the Status of Switch 1 To Check the first Button - Perform the Immediate AND Operation 0000010 With ACC value 1101111 B 1 1 0 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 If no zero Jump To sw1 ELECTRONIC QUIZ TABLE
  • 16. WORK FLOW SWITCH ON LED ONE move the data to Acc 1111 1110 B Call the Delay Program In Delay Move the Acc value to C Register And load the OF H (0000 11111 B)value to DE register Pair Perform the logical ORA Operation Then Jump Down ELECTRONIC QUIZ TABLE
  • 17. WORK FLOW In Jump Move C register Value to Accumulator Perform the Immediate AND Operation with the value(0F H) Finally Reset the Acc Value with 1101111 B Like Wise all the switches are tested. ELECTRONIC QUIZ TABLE
  • 18. Initially all LEDs set to off ELECTRONIC QUIZ TABLE
  • 19. Microprocessor Found the switch then the led will glow and buzzer is on ELECTRONIC QUIZ TABLE
  • 20. Microprocessor Found the pressed switch then the led will glow and buzzer is on the No shown the 7 – Segment LED SEVEN DEGMENT LED ELECTRONIC QUIZ TABLE