0% found this document useful (0 votes)
34 views2 pages

Microprocessor and Interfacing Course Guide

Uploaded by

Nakrani Heet
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views2 pages

Microprocessor and Interfacing Course Guide

Uploaded by

Nakrani Heet
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Faculty of Engineering and Technology

Bachelor of Technology
Effective from Academic Year: 2018-19

Branch Name: Computer Engineering


Semester/Year: Semester V / Third Year
Subject Title: Microprocessor and Interfacing
Subject Code: 1ET1030505
Pre-requisite: Computer organization and Architecture

Course Objective:
 To understand architecture and instruction set of 8 bit microprocessor.
 To understand basics of microprocessor, microprocessor architecture and programming.
 To understand microprocessor connection with memory and I/O devices.

Teaching Scheme
Evaluation Scheme (Marks)
(Hours per week)
Theory (Marks) Practical (Marks)
Lecture Tutorial Practical Total
Credit University Continuous University Continuous
(L) (T) (P) (Marks)
Assessment Assessment Assessment Assessment
02 - 02 03 70 30 30 20 150

Subject Contents
Sr. Total Weightage
Topic
No Hours (%)
1 Basics: History of Microprocessor, 8085 Microprocessor architecture, 06 20
buses, register, flags, 8085 pin configuration and function of each pin.
2 Operation and Control: Fetch, decode and execute operations. Op-code 07 25
fetch, execute cycle, T state, Machine cycle. Addressing modes of 8085.
3 Instruction Set: Data transfer, Arithmetic, Logical, Rotate, Branch and 05 15
machine control instructions, Addressing Modes
4 Interrupts and Subroutines: 8085 interrupts, RST, SIM, RIM instructions. 05 20
Subroutine and conditional call instruction.
5 Programming: Assembly Language Programming Basics, Classification 04 20
of Instructions, Writing & Executing A Program.

Course Outcome:
After learning the course, the students will be able to understand the working of 8 bit
microprocessor. Student also able to understand the various operations performed on the microprocessor. It
also gives the idea about performing various types of operations on processor using instruction sets.

List of Text Books:


1. Gaonkar R. S., “Microprocessor Architecture, Programming and Applications”, Penram
International.

1|Page
List of Reference Books:
1. Doughlas [Link], “Microprocessors and Interfacing, Programming and Hardware:TMH.
2. Short K. L., “Microprocessors and Programmed Logic”, 2nd Ed., Pearson Education.
3. Microprocessor 8085 and Its Interfacing by Sunil Mathur; 2nd Ed.

List of Suggested titles of Experiments:


1. Introduction to 8085 assembly language programming.
2. Write ALP to add two-8bit numbers.
3. Write ALP to copy content of C250H to C350H with HL register pair.
4. Write ALP to exchange the content of two registers.
5 Write ALP to make average of 10 random numbers.
6. Write ALP to add two 16 bit numbers.
7. Write ALP to find minimum number and store that number in memory location.
8. Write ALP to find the number of odd and even numbers from the given 10 8-bit numbers.
9. Write ALP to arrange the given five 8-bit numbers in ascending order.

e-Resources (If any):


1. [Link]
2. [Link]
3 [Link]

2|Page

Common questions

Powered by AI

The architecture of the 8085 microprocessor facilitates the execution of machine control instructions through its set of registers, buses, and instruction set specifically designed for operations such as machine control. The microprocessor has dedicated control signals that manage the flow of instructions and data, allowing for the precise execution of operations like halting, interruptions, and the use of System, Interrupt Mask (SIM), and Read Interrupt Mask (RIM) instructions. These elements enable efficient handling of control tasks essential for operation coordination in embedded systems .

The interrupt instructions RST, SIM, and RIM in the 8085 microprocessor enhance hardware communication by providing specialized handling of interrupts. RST is used to reset the program counter to a specific address, acting as a breakpoint in program execution to handle interrupts. The SIM (Set Interrupt Mask) instruction sets or clears mask bits, controlling which interrupts can be recognized by the processor. Meanwhile, RIM (Read Interrupt Mask) reads the status of the interrupt system, enabling the processor to make informed decisions based on current interrupt conditions. Together, these instructions allow for precise and flexible hardware communication, crucial for real-time processing applications .

Data transfer instructions in the 8085 instruction set, such as MOV and MVI, focus on moving data between registers, memory, or immediate values without altering the data. In contrast, arithmetic instructions, such as ADD or SUB, perform mathematical operations on data, involving altering the values in the registers or accumulator. These differences underline their distinct roles: data transfer instructions primarily focus on manipulation and placement of data, while arithmetic instructions perform operational transformations .

Interrupts enhance the functionality of the 8085 microprocessor by allowing it to respond quickly to external events, thereby improving the responsiveness and efficiency of processing tasks. They enable the microprocessor to pause its current execution and attend to higher priority tasks through hardware signals, which is essential for multitasking and real-time processing. The presence of instructions like RST, SIM, and RIM further provide mechanisms for controlling interrupt services and prioritize operations based on urgency, facilitating process optimization and resource management .

The integration of buses, registers, and pin configuration in the 8085 microprocessor directly impacts its performance by determining how efficiently data is transferred, processed, and maintained. Buses facilitate communication between different parts of the system, enabling data movement essential for sequential and parallel processes. Registers provide storage locations for immediate data handling, enhancing processing speed by reducing the time spent accessing memory. Finally, pin configuration determines electrical interfacing for external communications, influencing data input/output lifecycles and peripheral interactions. Together, these components ensure that the microprocessor operates optimally in various applications .

Assembly language programming for the 8085 microprocessor is significantly different from high-level programming languages in terms of abstraction, complexity, and syntax. Assembly language is low-level, requiring detailed instructions that directly manipulate hardware components using an instruction set specific to the microprocessor, such as MOV, ADD, or SUB, making it closer to machine code. In contrast, high-level languages abstract these operations, offering human-readable constructs that simplify programming at the expense of direct hardware control and efficiency, thus demanding a deeper understanding of the microprocessor's architecture from developers .

The history of microprocessors influences the study and development of newer processor technologies by providing foundational knowledge that drives innovation. Past developments, including the evolution of architecture, instruction sets, and fabrication technologies, highlight pivotal advancements and challenges overcome, serving as case studies for modern improvements. This historical context allows engineers to build on proven designs, learn from previous limitations, and foresee trends such as increased integration, power efficiency, and performance enhancements, all of which inform the strategic direction of current and future microprocessor design efforts .

Subroutines in 8085 microprocessor programming allow for modular code by enabling the reuse of code segments through calls to predefined procedures. They impact code efficiency by reducing redundancy and shortening program length, which in turn conserves memory resources. They also improve code readability and maintainability, helping programmers to structure complex programs more effectively by isolating functionality into easily manageable blocks that can be tested and debugged independently .

The 8085 microprocessor utilizes various addressing modes, such as Immediate, Direct, Register, Register Indirect, and Implicit, to efficiently access operands during instruction execution cycles. Each mode affects how operands are specified or retrieved by the microprocessor. For example, in the Immediate addressing mode, the operand is explicitly stated in the instruction, whereas in Direct addressing, the memory location of the operand is specified. This versatility allows the microprocessor to adapt instruction execution to various scenarios, optimizing resource use and processing capabilities .

The T state in the 8085 microprocessor represents a single clock cycle during which a specific part of the instruction cycle is executed, such as fetching, decoding, or executing an instruction. It is a critical component of the machine cycle, which is the complete sequence of states required to execute an instruction. The significance of the T state lies in its detailed control over processor timing and synchronization, ensuring precise execution of instructions and enhancing the processor's efficiency and performance .

You might also like