Computer Memory

Total Page:16

File Type:pdf, Size:1020Kb

Computer Memory Computer Memory Computer memory is an internal storage area in the computer, in which data and programs are stored either temporarily or permanently. The two types of memories are 1. Primary memory 2. Secondary memory. 1. Primary memory: Primary memory is also known as main memory or internal memory. Primary memory directly holds instructions and data, when a program is executed. Primary memory is the only type of memory, that is directly accessed by CPU. It is volatile in nature. Volatile means, the data and instructions will erase when you power off the computer. Primary memory is expensive and limited storage capacity. Primary memory is non-portable and its data access is high. Primary memory are again two types. They are i). RAM (Random access memory) ii). ROM (Read only memory). i). Random access memory: Random access memory is a volatile storage area within the computer that is typically used to store data temporarily, so that it can be promptly accessed by the processor. The information stored in the RAM is basically loaded from the computer hard disk and includes data related to the operating system and application that are currently being executed by the processor. RAM is considered random access because any memory cell can be directly accessed if its address is known. Memory usually refers to random access memory (RAM) typically DRAM. a). Dynamic Ram (DRAM): DRAM is a common type of memory used in PC, work stations, servers. DRAM must be refreshed in a second to hold its data contents. DRAM chip contains millions of memory cells. Each cell is made up of transistors and capacitors and contains a bit of information. It is cheap and can hold 4 times more data than SRAM. b). Static RAM (SRAM): SRAM holds data without an external refresh as long as it is powered. SRAM is made up of D flip-flops, in which memory cells flip-flip between 0 and 1 without use of capacitors. SRAM occupies more space and expensive. SRAM is faster and more reliable. SRAM chips are used in cars, house hold appliances and hand-held electronic devices. ii). Read only memory: read only memory refers computer memory chips containing permanent or semi-permanent data which is nonvolatile. Most computers contain a small amount of ROM that contains critical programs such as the Basic Input Output System (BIOS) which is used to boot up the computer when it is turned on. ROMs are read only. To update the programs stored in them, the ROM chip had to removed and physically replaced by another that had new versions of the program. But in today ROM chips updates are possible. Rewritable ROM chips are available. Rewritable ROM chips include PROM (programmable read only memory) EPROM (erasable programable read only memory) EEPROM (electrically erasable programable read only memory) PROM: PROM is a memory chip on which data can be written only once. It is also called one-time programmable PROM and can be written or programmed using a special device called a PROM programmer. EPROM: EPROM is a special type of PROM that can be erased by exposing it to ultraviolet light. Once it is erased, it can be reprogrammed. EEPROM: EEPROM is a special type of PROM that can be erased by exposing it to an electrical charge. It is based on a semiconductor structure similar to the EPROM, but allows the entire or selected contents to be electrically erased and rewritten electrically, so that they need not be removed from the computer. The process of writing an EEPROM is also known as Flashing. 2. Secondary Memory: Secondary memory is also known as Auxillary memory or external memory. Secondary memory holds data and programs, that are not currently in use and provides long term storage. Secondary memory is non-volatile in nature. The data and instructions do not erase, when the power is switch off, it is cheap and can store voluminous data. Secondary memory is highly portable. In secondary memory data access is low when compared to primary memory. 8888 .
Recommended publications
  • Nanotechnology ? Nram (Nano Random Access
    International Journal Of Engineering Research and Technology (IJERT) IFET-2014 Conference Proceedings INTERFACE ECE T14 INTRACT – INNOVATE - INSPIRE NANOTECHNOLOGY – NRAM (NANO RANDOM ACCESS MEMORY) RANJITHA. T, SANDHYA. R GOVERNMENT COLLEGE OF TECHNOLOGY, COIMBATORE 13. containing elements, nanotubes, are so small, NRAM technology will Abstract— NRAM (Nano Random Access Memory), is one of achieve very high memory densities: at least 10-100 times our current the important applications of nanotechnology. This paper has best. NRAM will operate electromechanically rather than just been prepared to cull out answers for the following crucial electrically, setting it apart from other memory technologies as a questions: nonvolatile form of memory, meaning data will be retained even What is NRAM? when the power is turned off. The creators of the technology claim it What is the need of it? has the advantages of all the best memory technologies with none of How can it be made possible? the disadvantages, setting it up to be the universal medium for What is the principle and technology involved in NRAM? memory in the future. What are the advantages and features of NRAM? The world is longing for all the things it can use within its TECHNOLOGY palm. As a result nanotechnology is taking its head in the world. Nantero's technology is based on a well-known effect in carbon Much of the electronic gadgets are reduced in size and increased nanotubes where crossed nanotubes on a flat surface can either be in efficiency by the nanotechnology. The memory storage devices touching or slightly separated in the vertical direction (normal to the are somewhat large in size due to the materials used for their substrate) due to Van der Waal's interactions.
    [Show full text]
  • AXP Internal 2-Apr-20 1
    2-Apr-20 AXP Internal 1 2-Apr-20 AXP Internal 2 2-Apr-20 AXP Internal 3 2-Apr-20 AXP Internal 4 2-Apr-20 AXP Internal 5 2-Apr-20 AXP Internal 6 Class 6 Subject: Computer Science Title of the Book: IT Planet Petabyte Chapter 2: Computer Memory GENERAL INSTRUCTIONS: • Exercises to be written in the book. • Assignment questions to be done in ruled sheets. • You Tube link is for the explanation of Primary and Secondary Memory. YouTube Link: ➢ https://youtu.be/aOgvgHiazQA INTRODUCTION: ➢ Computer can store a large amount of data safely in their memory for future use. ➢ A computer’s memory is measured either in Bits or Bytes. ➢ The memory of a computer is divided into two categories: Primary Memory, Secondary Memory. ➢ There are two types of Primary Memory: ROM and RAM. ➢ Cache Memory is used to store program and instructions that are frequently used. EXPLANATION: Computer Memory: Memory plays a very important role in a computer. It is the basic unit where data and instructions are stored temporarily. Memory usually consists of one or more chips on the mother board, or you can say it consists of electronic components that store instructions waiting to be executed by the processor, data needed by those instructions, and the results of processing the data. Memory Units: Computer memory is measured in bits and bytes. A bit is the smallest unit of information that a computer can process and store. A group of 4 bits is known as nibble, and a group of 8 bits is called byte.
    [Show full text]
  • Parallel Computer Architecture and Programming CMU / 清华 大学
    Lecture 20: Addressing the Memory Wall Parallel Computer Architecture and Programming CMU / 清华⼤学, Summer 2017 CMU / 清华⼤学, Summer 2017 Today’s topic: moving data is costly! Data movement limits performance Data movement has high energy cost Many processors in a parallel computer means… ~ 0.9 pJ for a 32-bit foating-point math op * - higher overall rate of memory requests ~ 5 pJ for a local SRAM (on chip) data access - need for more memory bandwidth to avoid ~ 640 pJ to load 32 bits from LPDDR memory being bandwidth bound Core Core Memory bus Memory Core Core CPU * Source: [Han, ICLR 2016], 45 nm CMOS assumption CMU / 清华⼤学, Summer 2017 Well written programs exploit locality to avoid redundant data transfers between CPU and memory (Key idea: place frequently accessed data in caches/buffers near processor) Core L1 Core L1 L2 Memory Core L1 Core L1 ▪ Modern processors have high-bandwidth (and low latency) access to on-chip local storage - Computations featuring data access locality can reuse data in this storage ▪ Common software optimization technique: reorder computation so that cached data is accessed many times before it is evicted (“blocking”, “loop fusion”, etc.) ▪ Performance-aware programmers go to great effort to improve the cache locality of programs - What are good examples from this class? CMU / 清华⼤学, Summer 2017 Example 1: restructuring loops for locality Program 1 void add(int n, float* A, float* B, float* C) { for (int i=0; i<n; i++) Two loads, one store per math op C[i] = A[i] + B[i]; } (arithmetic intensity = 1/3) void mul(int
    [Show full text]
  • Unit 5: Memory Organizations
    Memory Organizations Unit 5: Memory Organizations Introduction This unit considers the organization of a computer's memory system. The characteristics of the most important storage technologies are described in detail. Basically memories are classified as main memory and secondary memory. Main memory with many different categories are described in Lesson 1. Lesson 2 focuses the secondary memory including the details of floppy disks and hard disks. Lesson 1: Main Memory 1.1 Learning Objectives On completion of this lesson you will be able to : • describe the memory organization • distinguish between ROM, RAM, PROM, EEPROM and • other primary memory elements. 1.2 Organization Computer systems combine binary digits to form groups called words. The size of the word varies from system to system. Table 5.1 illustrates the current word sizes most commonly used with the various computer systems. Two decades ago, IBM introduced their 8-bit PC. This was Memory Organization followed a few years later by the 16-bit PC AT microcomputer, and already it has been replaced with 32- and 64-bit systems. The machine with increased word size is generally faster because it can process more bits of information in the same time span. The current trend is in the direction of the larger word size. Microcomputer main memories are generally made up of many individual chips and perform different functions. The ROM, RAM, Several types of semi- PROM, and EEPROM memories are used in connection with the conductor memories. primary memory of a microcomputers. The main memory generally store computer words as multiple of bytes; each byte consisting of eight bits.
    [Show full text]
  • Open Poremba-Dissertation.Pdf
    The Pennsylvania State University The Graduate School ARCHITECTING BYTE-ADDRESSABLE NON-VOLATILE MEMORIES FOR MAIN MEMORY A Dissertation in Computer Science and Engineering by Matthew Poremba c 2015 Matthew Poremba Submitted in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy May 2015 The dissertation of Matthew Poremba was reviewed and approved∗ by the following: Yuan Xie Professor of Computer Science and Engineering Dissertation Co-Advisor, Co-Chair of Committee John Sampson Assistant Professor of Computer Science and Engineering Dissertation Co-Advisor, Co-Chair of Committee Mary Jane Irwin Professor of Computer Science and Engineering Robert E. Noll Professor Evan Pugh Professor Vijaykrishnan Narayanan Professor of Computer Science and Engineering Kennith Jenkins Professor of Electrical Engineering Lee Coraor Associate Professor of Computer Science and Engineering Director of Academic Affairs ∗Signatures are on file in the Graduate School. Abstract New breakthroughs in memory technology in recent years has lead to increased research efforts in so-called byte-addressable non-volatile memories (NVM). As a result, questions of how and where these types of NVMs can be used have been raised. Simultaneously, semiconductor scaling has lead to an increased number of CPU cores on a processor die as a way to utilize the area. This has increased the pressure on the memory system and causing growth in the amount of main memory that is available in a computer system. This growth has escalated the amount of power consumed by the system by the de facto DRAM type memory. Moreover, DRAM memories have run into physical limitations on scalability due to the nature of their operation.
    [Show full text]
  • Hard Disk Drive Specifications Models: 2R015H1 & 2R010H1
    Hard Disk Drive Specifications Models: 2R015H1 & 2R010H1 P/N:1525/rev. A This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein – which will be incorporated in revised editions of the publication. Maxtor may make changes or improvements in the product(s) described in this publication at any time and without notice. Copyright © 2001 Maxtor Corporation. All rights reserved. Maxtor®, MaxFax® and No Quibble Service® are registered trademarks of Maxtor Corporation. Other brands or products are trademarks or registered trademarks of their respective holders. Corporate Headquarters 510 Cottonwood Drive Milpitas, California 95035 Tel: 408-432-1700 Fax: 408-432-4510 Research and Development Center 2190 Miller Drive Longmont, Colorado 80501 Tel: 303-651-6000 Fax: 303-678-2165 Before You Begin Thank you for your interest in Maxtor hard drives. This manual provides technical information for OEM engineers and systems integrators regarding the installation and use of Maxtor hard drives. Drive repair should be performed only at an authorized repair center. For repair information, contact the Maxtor Customer Service Center at 800- 2MAXTOR or 408-922-2085. Before unpacking the hard drive, please review Sections 1 through 4. CAUTION Maxtor hard drives are precision products. Failure to follow these precautions and guidelines outlined here may lead to product failure, damage and invalidation of all warranties. 1 BEFORE unpacking or handling a drive, take all proper electro-static discharge (ESD) precautions, including personnel and equipment grounding. Stand-alone drives are sensitive to ESD damage. 2 BEFORE removing drives from their packing material, allow them to reach room temperature.
    [Show full text]
  • A Study About Non-Volatile Memories
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 29 July 2016 doi:10.20944/preprints201607.0093.v1 1 Article 2 A Study about Non‐Volatile Memories 3 Dileep Kumar* 4 Department of Information Media, The University of Suwon, Hwaseong‐Si South Korea ; [email protected] 5 * Correspondence: [email protected] ; Tel.: +82‐31‐229‐8212 6 7 8 Abstract: This paper presents an upcoming nonvolatile memories (NVM) overview. Non‐volatile 9 memory devices are electrically programmable and erasable to store charge in a location within the 10 device and to retain that charge when voltage supply from the device is disconnected. The 11 non‐volatile memory is typically a semiconductor memory comprising thousands of individual 12 transistors configured on a substrate to form a matrix of rows and columns of memory cells. 13 Non‐volatile memories are used in digital computing devices for the storage of data. In this paper 14 we have given introduction including a brief survey on upcoming NVMʹs such as FeRAM, MRAM, 15 CBRAM, PRAM, SONOS, RRAM, Racetrack memory and NRAM. In future Non‐volatile memory 16 may eliminate the need for comparatively slow forms of secondary storage systems, which include 17 hard disks. 18 Keywords: Non‐volatile Memories; NAND Flash Memories; Storage Memories 19 PACS: J0101 20 21 22 1. Introduction 23 Memory is divided into two main parts: volatile and nonvolatile. Volatile memory loses any 24 data when the system is turned off; it requires constant power to remain viable. Most kinds of 25 random access memory (RAM) fall into this category.
    [Show full text]
  • Semiconductor Memories
    ECE423 1 Semiconductor Memories Xiang Yu, Department of Electrical and Computer Engineering DRAM chip, back in 1970. The technology has evolved Abstract—A brief overview on memory architecture and successfully along, following the trend characterized by processes for several conventional types within the MOS Moore’s law. family. Current trends and limitations would be discussed Currently with SRAM having the highest performance in before leading to some insight on the next generation of speed, they get to occupy the immediate memory space in memory products. computers, communicating with the central processing unit (CPU) as cache memory. However, a single SRAM cell array Index Terms—Random Access Memories, SRAM, DRAM, consists of six transistors (6T) in order to hold one bit as Flash memory, FRAM, MRAM, PRAM. shown in Figures 2 and 3 (a). This becomes a big physical limiting factor in terms of scaling optimization. In addition, there is the issue with data stability with the faster speeds and I. INTRODUCTION having leakage standby current [3]. HE term memory usually refers to storage space or chips T capable of holding data. Semiconductor memory is computer memory on an integrated circuit or chip. The present day MOS (metal oxide semiconductor) family now consists of SRAMs (static random access memories), DRAMs (dynamic random access memories), ROMs (read only memories), PROMs (programmable read-only memories), EPROMs (erasable programmable read-only memories), EEPROMs (electrically erasable programmable read-only memories), and flash memory [1]. For the past three and a half decades in existence, the family of semiconductor memories has expanded greatly and achieved higher densities, higher speeds, lower power, more functionality, and lower costs [2,3].
    [Show full text]
  • Advances in Computer Random Access Memory Himadri Barman
    Advances in Computer Random Access Memory Himadri Barman Introduction Random‐access memory (RAM) is a form of computer data storage and is typically associated with the main memory of a computer. RAM in popular context is volatile but as would be seen later on in the discussion, they need not be. Because of increasing complexity of the computer, emergence of portable devices, etc., RAM technology is undergoing tremendous advances. This report looks at some recent advances in RAM technology, including that of the conventional Dynamic Random Access Memory in the form of DDR 3 (Double Data Rate Type 3). We also look at the emerging area of Non‐volatile random‐access memory (NVRAM). NVRAM is random‐access memory that retains its information when power is turned off, which is described technically as being non‐volatile. This is in contrast to the most common forms of random access memory today, dynamic random‐access memory (DRAM) and static random‐access memory (SRAM), which both require continual power in order to maintain their data. NVRAM is a subgroup of the more general class of non‐volatile memory types, the difference being that NVRAM devices offer random access, unlike hard disks. Double Data Rate 3 Synchronous Dynamic Random Access Memory DDR 3, the third‐generation of DDR SDRAM technology, is a modern kind of DRAM with a high bandwidth interface. It is one of several variants of DRAM and associated interface techniques used since the early 1970s. DDR3 SDRAM is neither forward nor backward compatible with any earlier type of RAM due to different signaling voltages, timings, and other factors.
    [Show full text]
  • Week 12 RAM.Pdf
    Memory • Sequential circuits all depend upon the presence of memory. – A flip-flop can store one bit of information. – A register can store a single “word,” typically 32-64 bits. • Memory allows us to store even larger amounts of data. – Random Access Memory (RAM - volatile) • Static RAM (SRAM) • Dynamic RAM (DRAM) – Read Only Memory (ROM – nonvolatile) 1 Introduction to RAM • Random-access memory, or RAM, provides large quantities of temporary storage in a computer system. – Memory cells can be accessed to transfer information to or from any desired location, with the access taking the same time regardless of the location • A RAM can store many values. – An address will specify which memory value we’re interested in. – Each value can be a multiple-bit word (e.g., 32 bits). • We’ll refine the memory properties as follows: A RAM should be able to: - Store many words, one per address - Read the word that was saved at a particular address - Change the word that’s saved at a particular address 2 Picture of memory Address Data 00000000 00000001 • You can think of computer memory as being one 00000002 big array of data. – The address serves as an array index. Each address refers to one word of data. – . • You can read or modify the data at any given . memory address, just like you can read or . modify the contents of an array at any given . index. FFFFFFFD FFFFFFFE FFFFFFFF Word 3 Block diagram of RAM 2k x n memory CS WR Memory operation k ADRS OUT n 0xNone n DATA 1 0 Read selected word CS 11Write selected word WR • This block diagram introduces the main interface to RAM.
    [Show full text]
  • Computer Terms Worksheet Lesson 1
    Computer Terms Worksheet Lesson 1 Desktop PC: A computer that is flat and usually sits on a desk. The original design for a home computer. Tower PC: A computer that is upright--it looks like someone took a desktop PC and turned it on its side. In catalogs, the word desktop is sometimes used as a name for both the flat design style pictured above and the tower design. Monitor: The monitor is a specialized, high-resolution screen, similar to a high-quality television. The screen is made up of red, green and blue dots. Many times per second, your video card sends signals out to your monitor. The information your video card sends controls which dots are lit up and how bright they are, which determines the picture you see. Keyboard: The keyboard is the main input device for most computers. There are many sets of keys on a typical “windows” keyboard. On the left side of the keyboard are regular alphanumeric and punctuation keys similar to those on a typewriter. These are used to input textual information to the PC. A numeric keypad on the right is similar to that of an adding machine or calculator. Keys that are used for cursor control and navigation are located in the middle. Keys that are used for special functions are located along the top of the keyboard and along the bottom section of the alphanumeric keys. Lesson 1 Page 1 of 7 Mouse: An input device that allows the user to “point and click” or “drag and drop”. Common functions are pointing (moving the cursor or arrow on the screen by sliding the mouse on the mouse pad), clicking (using the left and right buttons) and scrolling (hold down the left button while moving the mouse).
    [Show full text]
  • Analysis of Various Memory Circuits Used in Digital VLSI
    International Journal of VLSI Design, Microelectronics and Embedded System Volume 4 Issue 1 Analysis of Various Memory Circuits Used In Digital VLSI Tanvi Upaskar, Ganesh Thorave, Prof. Sumita G*, Mayuresh Yerandekar, Siddhesh Mahadik K C College of Engineering and Management Studies Thane, India Corresponding author’s email id: [email protected]* DOI: http://doi.org/10.5281/zenodo.2652717 Abstract This paper presents comparison of semiconductor memory circuits such as volatile memories like SRAM, DRAM and non-volatile memories like ROM, PROM, EPROM, EEPROM, FLASH (NOR based & NAND based). This comparison is on the basis of some parameters including read speed, write speed, volatility, bits/cell, cell structure, cell density, power consumption, etc. In this paper we also focused on applications of those memory cells based on their characteristics. This paper presents the appropriate choice for selecting memory circuit with the read-write speed, capacity, power consumption. Keywords: Semiconductor memories, Volatility, Flash memory, memory cell, digital. INTRODUCTION non-volatile memory (which holds its data Semiconductor memory cells are capable even if the power is turned off). (See of storing large quantities of digital Figure:-1) information, essential to all digital systems. It is an essential element of VOLATILE MEMORY today's technical world. With the rapid Volatile memory needs power to maintain growth in the requirement for the stored information; it retains its semiconductor memories there have been contents while powered on but when the many types of memory that have emerged. power is interrupted, the stored data is There are basically two types of memory quickly lost. Volatile memory has many such as Volatile memory (which maintains uses including as primary storage its data while the device is powered) and 34 Page 34-44 © MANTECH PUBLICATIONS 2019.
    [Show full text]