STATUS REGISTER  It is a group of flip-flops. But it is not used to store data.  Each bit in the status register is used to indicate a particular condition.

Slides:



Advertisements
Similar presentations
Computer Organization and Architecture
Advertisements

D75P 34 – HNC Computer Architecture Week 10 Computer Memory. © C Nyssen/Aberdeen College 2003 All images © C Nyssen/Aberdeen College except where stated.
What is memory? Memory is used to store information within a computer, either programs or data. Programs and data cannot be used directly from a disk or.
ECE 301 – Digital Electronics Memory (Lecture #21)
Introduction to Microprocessors Number Systems and Conversions No /6/00 Chapter 1: Introduction to 68HC11 The 68HC11 Microcontroller.
Computer Organization and Architecture
Chapter 5 Internal Memory
Memory Key component of a computer system is its memory system to store programs and data. ITCS 3181 Logic and Computer Systems 2014 B. Wilkinson Slides12.ppt.
Memory. When we receive some instruction or information we retain them in our memory. Similarly a computer stores the instructions for solving a problem,
1 The 8051 Microcontroller and Embedded Systems CHAPTER INTERFACING TO EXTERNAL MEMORY.
Intro to Cache Memory By david hsu. Examples of memory Paper and writing, books Neon signs Cassettes and other magnetic tape memory Abacus Art material.
Memory Hierarchy.
Memory Main memory consists of a number of storage locations, each of which is identified by a unique address The ability of the CPU to identify each location.
Chapter 3 Computer Hard ware
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 2. Computer Structure Computer Structure The traditional diagram of a computer...
CPU MEMORY Powered by DeSiaMore1. CPU Its manage everything held in memory so that the machine keeps track of what is stored, where it is and what type.
 Memory Memory  Types of Memory Types of Memory  Memory Representation Memory Representation  Random Access Memory Random Access Memory  Read Only.
Introduction to Computing: Lecture 4
Random access memory.
What is a computer ?  A computer is an electronic device that can accept data and instruction, process them or store them for later retrieval, and sometimes.
Components of a Computer Prepared by: Mrs. McCallum-Rodney.
Memory Technology and Interfacing. Stored Program Model Memory Output Input CPU Stored-program computer model.
© Banff and Buchan College 2007 DH2T 34 Computer Architecture 1 LO2 Lesson One Memory.
Memory and Programmable Logic Memory device: Device to which binary information is transferred for storage, and from which information is available for.
HARDWARE ARCHITECTURE
Chapter 8 Memory Interface
Internal Memory.
Digital Design: Principles and Practices
Chidambaranathan C.M SRM University,Haryana. Memory:- As the word implies “memory” means the place where we have to store any thing, this is very essential.
CIM101 : Introduction to computer Lecture 3 Memory.
Supplemental reading Main Memory. REVIEW CPU-stands for central processing unit; it is the key component in a digital computer; it interprets computer.
SKILL AREA: 1.2 MAIN ELEMENTS OF A PERSONAL COMPUTER.
MEMORY INTERFACE (ROMS, RAMS). Computer Memory Overview.
Copyright © 2007 – Curt Hill Primary Memory and Electronic Storage Implementations.
Information Technology Basic Computer Architecture Adnan Khalid.
Microprocessor Fundamentals Week 3 Mount Druitt College of TAFE Dept. Electrical Engineering 2007.
Primary Storage Primary storage is the storage that is directly available to the CPU. It is also known as: Main Memory Main Memory Direct Access Storage.
Storage of Data Instructions and data are held in main memory which is divided into millions of addressable storage.
Microprocessor Fundamentals Week 3 Mount Druitt College of TAFE Dept. Electrical Engineering 2008.
ROM Nitin mishra. ROM Read-only memory (ROM) is a class of storage medium used in computers and other electronic devices. Data stored in ROM cannot be.
A memory is just like a human brain. It is used to store data and instructions. Computer memory is the storage space in computer where data is to be processed.
Architectural Considerations A Review of Some Architectural Concepts.
© 2009 Pearson Education, Upper Saddle River, NJ All Rights ReservedFloyd, Digital Fundamentals, 10 th ed Digital Logic Design Dr. Oliver Faust.
AHMEDABAD INSTITUTE OF TECHNOLOGY
PCs ENVIRONMENT and PERIPHERALS Lecture 3. operating system and other system software that control the usage of the computer equipment application programs.
Index What is an Interface Pins of 8085 used in Interfacing Memory – Microprocessor Interface I/O – Microprocessor Interface Basic RAM Cells Stack Memory.
UNIT V Programmable Devices. RAM A RAM constitutes the internal memory of the CPU for storing data, program and program result. It is read/write memory.
Components of Computer. Memory Unit Most important part of the computer Used to store data and instructions that are currently in use Main memory consists.
Chapter 2 content Basic organization of computer What is motherboard
MEMORY BYTES. MEMORY BYTES MEMORY MEMORY OUR Internal External.
Tech Level Cyber Security
Internal Memory.
Memory Main memory consists of a number of storage locations, each of which is identified by a unique address The ability of the CPU to identify each location.
Memory Main memory consists of a number of storage locations, each of which is identified by a unique address The ability of the CPU to identify each location.
Module IV Memory Organization.
introduction to computer
Principles & Applications
Memory Units Memories store data in units from one to eight bits. The most common unit is the byte, which by definition is 8 bits. Computer memories are.
Electronics Technology
COMPUTER ORGANISATION AND ARCHITECTURE
PRIMARY STORAGE.
PRIMARY STORAGE.
Module IV Memory Organization.
Computer Memory BY- Dinesh Lohiya.
Introduction to Computing Chapter 0
MICROPROCESSOR MEMORY ORGANIZATION
Semiconductor memories are classified in different ways. A distinction is made between read-only (ROM) and read-write (RWM) memories. The contents RWMs.
Computer Memory.
Presentation transcript:

STATUS REGISTER  It is a group of flip-flops. But it is not used to store data.  Each bit in the status register is used to indicate a particular condition of a register after an arithmetic or logic operation.  Each bit is called as a flag bit and therefore the status register is also known as “flag register”

STATUS REGISTER  It reflects the result obtained in the ALU. For example, if the result is negative, the sign bit is set to ‘1’ and if the result is positive, the sign bit is reset to ‘0’.  The 4-bit status register has four bits named as S, Z, P and Cy.  S-bit stands for sign. This bit set if the MSB of the result is 1, it is cleared if the MSB of the result is 0.

STATUS REGISTER  Z-bit stands for zero. This bit set if the result in the ALU contains all ‘0’s, it is cleared if the result is not equal to zero.  P-bit stands for parity. The bit can be set for odd parity or even parity.  Cy-bit stands for the carry bit. The arithmetic circuit produces Cyout when the result has exceeded the 4-bit limit. This bit is reset when there is not Cyout.

Memory Characteristics and Functions  Random Access Memory - RAM  Temporary and volatile  Can be read or written  Read Only Memory - ROM  Permanent and non-volatile  Can only be read

Memory types RAMROM SRAMDRAM PROMEPROM VolatileNon-volatile Semiconductor

RAM  Pronounced “ramm”, acronym for random access memory,  A type of computer memory that can be accessed randomly; that is, any byte of memory can be accessed without touching the preceding bytes.  RAM is the most common type of memory found in computers and other devices, such as printers.  There are two basic types of RAM: Dynamic RAM (DRAM) Static RAM (SRAM)

RAM  Two types: Dynamic RAM and Static RAM.  The two types differ in the technology they use to hold data, dynamic RAM being the more common type.  Dynamic RAM needs to be refreshed thousands of times per second.  Static RAM does not need to be refreshed, which makes it faster; but it is also more expensive than dynamic RAM.  Both types of RAM are volatile, meaning that they lose their contents when the power is turned off.

ROM  Pronounced “rahm”, acronym for read-only memory, computer memory on which data has been prerecorded.  Once data has been written onto a ROM chip, it cannot be removed and can only be read.  Unlike main memory (RAM), ROM retains its contents even when the computer is turned off.  ROM is referred to as being nonvolatile, whereas RAM is volatile.

Types of ROM 1. Programmable Read Only Memory (PROM) Empty of data when manufactured May be permanently programmed by the user 2. Erasable Programmable Read Only Memory (EPROM) Can be programmed, erased and reprogrammed The EPROM chip has a small window on top allowing it to be erased by shining ultra-violet light on it After reprogramming the window is covered to prevent new contents being erased Access time is around 45 – 90 nanoseconds 3. Electrically Erasable Programmable Read Only Memory (EEPROM) Reprogrammed electrically without using ultraviolet light Must be removed from the computer and placed in a special machine to do this Access times between 45 and 200 nanoseconds