SlideShare a Scribd company logo
Computer Organization
& Assembly Language
Lecture 1
(Course Introduction)
Course Introduction
• Instructor: Ghazanfer Mirza
• e-mail: ghazanfer4u@gmail.com
• Credit Hours: 3
Course Introduction
• Text Book :
Assembly Language Programming and Organization of the IBM PC,
Ytha Yu and Charles Marut
Course Assessment
Assessment Assessment Task
Proportion of Final
Assessment
1 Quizzes (n-1) 05%
2 Assignments 05%
3 Project 20%
4 Final exam 70%
Lecture Outline
• Part I: Computer Organization
• Part II: Assembly Language
Part I: Computer
organization
• Main hardware components and their relation to the software.
• What the computer does when it executes an instruction.
Topics to be covered
• Part I: Topics to be covered
• The Components of a Microcomputer System
I. Memory
II. The CPU
III. I/O Ports
• Instruction Cycle
• I/O Devices
• Programming Languages
Microcomputer Systems:
• I/O devices are also called peripherals.
• Integrated circuit , also known as chips , digital circuits.
• IC circuits are known as digital circuits because to operates on
discrete voltage signals levels typically a high voltage and a
low voltage represent by 0 and 1’s.
• These symbols are called binary digits or bits.
• All information processed by the computer is represented by
strings of 0’s and 1’s that is by bit string.
Motherboard:
• The motherboard is a printed circuit board that is the
foundation of a computer, located at the bottom of the
computer case.
• It allocates power to the CPU, RAM, and all other
computer hardware components.
• Most importantly, the motherboard allows hardware
components to communicate with one another.
Bytes and Words
• Information processed by the computer is stored in its
memory.
• The memory circuits are usually organized into groups that
can store eight bits of data.
• A string of eight bits is called a byte.
• Each memory byte is identified by a number that is called
address.
Bytes and Words
• The data stored in a memory byte are called its contents.
• The address of a memory byte is fixed and is different from
the address of any other memory byte in the computer.
• The contents of a memory byte are not unique and are subject
to change, because they denote the data currently being
stored.
Memory Represented as Bytes
5
Bit Position
• The positions are numbered from right to left, starting with 0.
• In a word, the bits 0 to 7 form the low byte and the bits 8 to
15 form the high byte.
• For a word stored in memory, its low byte comes from the
memory byte with the lower address and its high byte is from
the memory byte with the higher address.
Bit Positions in a Byte and a Word
Buses
• A processor communicates with memory and I/O circuits by
using signals that travel along a set of wires or connections
called buses.
• There are three kinds of signals: address, data, and control.
• And there are three buses: address bus, data bus, and control
bus.
Buses:
• For example, to read the contents of a memory location, the
CPU places the address of the memory location on the
address bus, and it receives the data, sent by the memory
circuits, on the data bus.
• A control signal is required to inform the memory to perform
a read operation.
• The CPU sends the control signal on the control bus.
Bus Connections of a Microcomputer
Intel 8086 Microprocessor Organization
Intel 8086 Microprocessor
Organization
• There are two main components of :
• Execution unit
• Bus unit
Execution Unit ( EU ):
• The purpose of the EU is to execute instructions.
• The arithmetic and logic unit (ALU) can perform arithmetic (+,
‐, x, /) and logic (AND, OR, NOT) operations.
• The data for the operations are stored in circuits called
registers.
• The EU has 8 registers.
• The EU contains temporary registers for holding operands for
the ALU and flag registers whose individual bits reflect the
results of a computation.
Bus Interface Unit ( BIU ):
• The BIU facilitates communication between the EU and the
memory or I/O circuits.
• The BIU is responsible for transmitting addresses, data, and
control signals on the buses.
• The instruction pointer (IP) contains the address of the next
instruction to be executed by the EU.
Instruction Prefetch:
• While the EU is executing an instruction, the BIU fetches up to
six bytes of the next instruction and places them in the
instruction queue.
Machine Instruction:
• The Opcode specifies the type of operation.
• The Operands are often given as memory addresses to the
data to be operated on.
Fetch Execute Cycle:‐
Fetch
•Fetch an instruction from memory.
•Decode the instruction to determine the operation.
•Fetch data from memory if necessary. Execute
•Perform the operation on the data.
•Store the result in memory if needed.
Programming Languages
• The operations of the computer’s hardware are controlled by
its software.
• When the computer is on, it is always in the process of
executing instructions.
Machine Language:
• The CPU can only execute machine language instructions.
• They are bit strings.
• Machine Instruction Operation
• 10100001 00000000 00000000 Fetch the contents of memory
word 0 and put it in register AX.
• 00000101 00000100 00000000 Add 4 to AX.
• 10100011 00000000 00000000 Store the contents of
• AX in memory word 0.
Assembly Language:
• A more convenient language to use is assembly language.
• In assembly language, we use symbolic names to represent
operations, registers, and memory locations.
• If location 0 is symbolized by A, the preceding program
expressed in IBM PC assembly language would look like this:
Assembly Language:
Assembly Instruction Comment
MOV AX, A ; fetch the contents of
; location A and put it in
; register AX
ADD AX, 4 ; add 4 to AX
MOV A, AX ; move the contents of AX
; into location A

More Related Content

PPT
Computer Organization and Assembly Language
PPTX
Register organization, stack
PPT
Bus interconnection
PPTX
Error Detection and Correction presentation
PDF
Computer organiztion5
PPTX
Computer architecture data representation
PPTX
Computer Organisation & Architecture (chapter 1)
PPTX
Cache coherence ppt
Computer Organization and Assembly Language
Register organization, stack
Bus interconnection
Error Detection and Correction presentation
Computer organiztion5
Computer architecture data representation
Computer Organisation & Architecture (chapter 1)
Cache coherence ppt

What's hot (20)

PPT
Bus and Memory transfer
PPTX
Addressing modes
PPT
Instruction cycle
PPTX
DMA and DMA controller
PPTX
Planning in AI(Partial order planning)
PPTX
Unit 6 inter processor communication and synchronization
PPT
OS Process and Thread Concepts
PPT
Instruction format
PPTX
Instruction Set Architecture
PPT
Lecture #5 Data Communication and Network
PPTX
Computer registers
PPTX
Assembly language
PPSX
Framing Protocols
PPTX
Computer organization
PPTX
Lecture 3 instruction set
PPT
Internetworking.49
PPTX
Stack and its usage in assembly language
PPT
Data transfer and manipulation
DOC
8086 class notes-Y.N.M
Bus and Memory transfer
Addressing modes
Instruction cycle
DMA and DMA controller
Planning in AI(Partial order planning)
Unit 6 inter processor communication and synchronization
OS Process and Thread Concepts
Instruction format
Instruction Set Architecture
Lecture #5 Data Communication and Network
Computer registers
Assembly language
Framing Protocols
Computer organization
Lecture 3 instruction set
Internetworking.49
Stack and its usage in assembly language
Data transfer and manipulation
8086 class notes-Y.N.M
Ad

Viewers also liked (20)

PDF
assembly language programming and organization of IBM PC" by YTHA YU
PDF
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
PPTX
Processor Basics
PPTX
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
PPT
Assembly Language Basics
PDF
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
PDF
Assembly Language Programming By Ytha Yu, Charles Marut Chap 1(Microcomputer ...
PPT
Assembly Language Lecture 2
PPT
Assembly Language Lecture 1
PDF
Coal 1 - introduction to assembly programming in Assembly Programming
PPT
Assembly language programming(unit 4)
PDF
Assembly Language Programming By Ytha Yu, Charles Marut Chap 7 (Logic, Shift,...
PDF
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
PPT
Assembly Language Lecture 4
PPT
Lec 01 basic concepts
PPTX
Register & Memory
PPTX
Part I:Introduction to assembly language
PPT
Assembly Language Lecture 5
PPT
Assembly language programming_fundamentals 8086
PPT
Assembly Language Lecture 3
assembly language programming and organization of IBM PC" by YTHA YU
Assembly Language Programming By Ytha Yu, Charles Marut Chap 6 (Flow Control ...
Processor Basics
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Basics
Assembly Language Programming By Ytha Yu, Charles Marut Chap 4 (Introduction ...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 1(Microcomputer ...
Assembly Language Lecture 2
Assembly Language Lecture 1
Coal 1 - introduction to assembly programming in Assembly Programming
Assembly language programming(unit 4)
Assembly Language Programming By Ytha Yu, Charles Marut Chap 7 (Logic, Shift,...
Assembly Language Programming By Ytha Yu, Charles Marut Chap 10 ( Arrays and ...
Assembly Language Lecture 4
Lec 01 basic concepts
Register & Memory
Part I:Introduction to assembly language
Assembly Language Lecture 5
Assembly language programming_fundamentals 8086
Assembly Language Lecture 3
Ad

Similar to Chapter 1 (20)

PDF
Assembly Language and Structures of Microcomputer | Chap-1
PDF
chapter 1 of computers organization .pdf
PDF
Unit 1. introduction
PPT
Chapter1 introduction to computer systems
PPT
Computer Architecture and Organization ppt
PPTX
digital principles and computer organization
PDF
computer organization and architecturebec306c
PPTX
Unit I.pptx
PDF
CPE UNIT I.pdf c Programming for engineers
PPTX
Introduction to Computer System
PPTX
Alisksdjdhdhhdhdhdhdhhdhdheheksjsjs.pptx
PPTX
Computer Organization and assembly language
PPTX
Computer Architecture and Organization.pptx
PPTX
Hardware and software of computer
PPT
Microprocessor fundamentals
PPTX
Module-1_Part_1 (1).pptx
PPTX
EE5440 – Computer Architecture - Lecture 1
PPTX
Computer Organization and Architecture.pptx
PPTX
11 cs unit 1 one shot_240427_202128 (1) (1).pptx
PPT
Intro. to computer system
Assembly Language and Structures of Microcomputer | Chap-1
chapter 1 of computers organization .pdf
Unit 1. introduction
Chapter1 introduction to computer systems
Computer Architecture and Organization ppt
digital principles and computer organization
computer organization and architecturebec306c
Unit I.pptx
CPE UNIT I.pdf c Programming for engineers
Introduction to Computer System
Alisksdjdhdhhdhdhdhdhhdhdheheksjsjs.pptx
Computer Organization and assembly language
Computer Architecture and Organization.pptx
Hardware and software of computer
Microprocessor fundamentals
Module-1_Part_1 (1).pptx
EE5440 – Computer Architecture - Lecture 1
Computer Organization and Architecture.pptx
11 cs unit 1 one shot_240427_202128 (1) (1).pptx
Intro. to computer system

Recently uploaded (20)

PDF
YKS Chrome Plated Brass Safety Valve Product Catalogue
PPTX
executive branch_no record.pptxsvvsgsggs
PPTX
02fdgfhfhfhghghhhhhhhhhhhhhhhhhhhhh.pptx
DOCX
A PROPOSAL ON IoT climate sensor 2.docx
PPTX
Lecture-3-Computer-programming for BS InfoTech
PPTX
Presentacion compuuuuuuuuuuuuuuuuuuuuuuu
PDF
Dynamic Checkweighers and Automatic Weighing Machine Solutions
PDF
Smarter Security: How Door Access Control Works with Alarms & CCTV
PPT
FABRICATION OF MOS FET BJT DEVICES IN NANOMETER
PPTX
PROGRAMMING-QUARTER-2-PYTHON.pptxnsnsndn
PPTX
Operating System Processes_Scheduler OSS
PPTX
Sem-8 project ppt fortvfvmat uyyjhuj.pptx
PDF
Core Components of IoT, The elements need for IOT
PPTX
kvjhvhjvhjhjhjghjghjgjhgjhgjhgjhgjhgjhgjhgjh
PPTX
Embeded System for Artificial intelligence 2.pptx
PPTX
DEATH AUDIT MAY 2025.pptxurjrjejektjtjyjjy
PPTX
udi-benefits-ggggggggfor-healthcare.pptx
PPTX
figurative-languagepowerpoint-150309132252-conversion-gate01.pptx
PDF
-DIGITAL-INDIA.pdf one of the most prominent
PPTX
sdn_based_controller_for_mobile_network_traffic_management1.pptx
YKS Chrome Plated Brass Safety Valve Product Catalogue
executive branch_no record.pptxsvvsgsggs
02fdgfhfhfhghghhhhhhhhhhhhhhhhhhhhh.pptx
A PROPOSAL ON IoT climate sensor 2.docx
Lecture-3-Computer-programming for BS InfoTech
Presentacion compuuuuuuuuuuuuuuuuuuuuuuu
Dynamic Checkweighers and Automatic Weighing Machine Solutions
Smarter Security: How Door Access Control Works with Alarms & CCTV
FABRICATION OF MOS FET BJT DEVICES IN NANOMETER
PROGRAMMING-QUARTER-2-PYTHON.pptxnsnsndn
Operating System Processes_Scheduler OSS
Sem-8 project ppt fortvfvmat uyyjhuj.pptx
Core Components of IoT, The elements need for IOT
kvjhvhjvhjhjhjghjghjgjhgjhgjhgjhgjhgjhgjhgjh
Embeded System for Artificial intelligence 2.pptx
DEATH AUDIT MAY 2025.pptxurjrjejektjtjyjjy
udi-benefits-ggggggggfor-healthcare.pptx
figurative-languagepowerpoint-150309132252-conversion-gate01.pptx
-DIGITAL-INDIA.pdf one of the most prominent
sdn_based_controller_for_mobile_network_traffic_management1.pptx

Chapter 1

  • 1. Computer Organization & Assembly Language Lecture 1 (Course Introduction)
  • 2. Course Introduction • Instructor: Ghazanfer Mirza • e-mail: ghazanfer4u@gmail.com • Credit Hours: 3
  • 3. Course Introduction • Text Book : Assembly Language Programming and Organization of the IBM PC, Ytha Yu and Charles Marut
  • 4. Course Assessment Assessment Assessment Task Proportion of Final Assessment 1 Quizzes (n-1) 05% 2 Assignments 05% 3 Project 20% 4 Final exam 70%
  • 5. Lecture Outline • Part I: Computer Organization • Part II: Assembly Language
  • 6. Part I: Computer organization • Main hardware components and their relation to the software. • What the computer does when it executes an instruction.
  • 7. Topics to be covered • Part I: Topics to be covered • The Components of a Microcomputer System I. Memory II. The CPU III. I/O Ports • Instruction Cycle • I/O Devices • Programming Languages
  • 8. Microcomputer Systems: • I/O devices are also called peripherals. • Integrated circuit , also known as chips , digital circuits. • IC circuits are known as digital circuits because to operates on discrete voltage signals levels typically a high voltage and a low voltage represent by 0 and 1’s. • These symbols are called binary digits or bits. • All information processed by the computer is represented by strings of 0’s and 1’s that is by bit string.
  • 9. Motherboard: • The motherboard is a printed circuit board that is the foundation of a computer, located at the bottom of the computer case. • It allocates power to the CPU, RAM, and all other computer hardware components. • Most importantly, the motherboard allows hardware components to communicate with one another.
  • 10. Bytes and Words • Information processed by the computer is stored in its memory. • The memory circuits are usually organized into groups that can store eight bits of data. • A string of eight bits is called a byte. • Each memory byte is identified by a number that is called address.
  • 11. Bytes and Words • The data stored in a memory byte are called its contents. • The address of a memory byte is fixed and is different from the address of any other memory byte in the computer. • The contents of a memory byte are not unique and are subject to change, because they denote the data currently being stored.
  • 13. Bit Position • The positions are numbered from right to left, starting with 0. • In a word, the bits 0 to 7 form the low byte and the bits 8 to 15 form the high byte. • For a word stored in memory, its low byte comes from the memory byte with the lower address and its high byte is from the memory byte with the higher address.
  • 14. Bit Positions in a Byte and a Word
  • 15. Buses • A processor communicates with memory and I/O circuits by using signals that travel along a set of wires or connections called buses. • There are three kinds of signals: address, data, and control. • And there are three buses: address bus, data bus, and control bus.
  • 16. Buses: • For example, to read the contents of a memory location, the CPU places the address of the memory location on the address bus, and it receives the data, sent by the memory circuits, on the data bus. • A control signal is required to inform the memory to perform a read operation. • The CPU sends the control signal on the control bus.
  • 17. Bus Connections of a Microcomputer
  • 19. Intel 8086 Microprocessor Organization • There are two main components of : • Execution unit • Bus unit
  • 20. Execution Unit ( EU ): • The purpose of the EU is to execute instructions. • The arithmetic and logic unit (ALU) can perform arithmetic (+, ‐, x, /) and logic (AND, OR, NOT) operations. • The data for the operations are stored in circuits called registers. • The EU has 8 registers. • The EU contains temporary registers for holding operands for the ALU and flag registers whose individual bits reflect the results of a computation.
  • 21. Bus Interface Unit ( BIU ): • The BIU facilitates communication between the EU and the memory or I/O circuits. • The BIU is responsible for transmitting addresses, data, and control signals on the buses. • The instruction pointer (IP) contains the address of the next instruction to be executed by the EU.
  • 22. Instruction Prefetch: • While the EU is executing an instruction, the BIU fetches up to six bytes of the next instruction and places them in the instruction queue.
  • 23. Machine Instruction: • The Opcode specifies the type of operation. • The Operands are often given as memory addresses to the data to be operated on.
  • 24. Fetch Execute Cycle:‐ Fetch •Fetch an instruction from memory. •Decode the instruction to determine the operation. •Fetch data from memory if necessary. Execute •Perform the operation on the data. •Store the result in memory if needed.
  • 25. Programming Languages • The operations of the computer’s hardware are controlled by its software. • When the computer is on, it is always in the process of executing instructions.
  • 26. Machine Language: • The CPU can only execute machine language instructions. • They are bit strings. • Machine Instruction Operation • 10100001 00000000 00000000 Fetch the contents of memory word 0 and put it in register AX. • 00000101 00000100 00000000 Add 4 to AX. • 10100011 00000000 00000000 Store the contents of • AX in memory word 0.
  • 27. Assembly Language: • A more convenient language to use is assembly language. • In assembly language, we use symbolic names to represent operations, registers, and memory locations. • If location 0 is symbolized by A, the preceding program expressed in IBM PC assembly language would look like this:
  • 28. Assembly Language: Assembly Instruction Comment MOV AX, A ; fetch the contents of ; location A and put it in ; register AX ADD AX, 4 ; add 4 to AX MOV A, AX ; move the contents of AX ; into location A