CPEG300 Embedded System Design. Lecture 3 Memory

Size: px
Start display at page:

Download "CPEG300 Embedded System Design. Lecture 3 Memory"

Transcription

1 CPEG300 Embedded System Design Lecture 3 Memory Hamad Bin Khalifa University, Spring 2018

2 Review Von Neumann vs. Harvard architecture? System on Board, system on chip? Generic Hardware Architecture of a Microcontroller? 8051 history, block diagram and on-chip resources 8-bit CPU 4K Internal RoM, 128B RAM, 64K memory extension (ROM, RAM) 16-bit counter x2, Interrupts x5 8-bit I/O ports x4, UART x supply, reset and system clock? Clock period, machine cycle (state, beat), instruction cycle? Instruction fetch stage and the instruction execution stage? 2

3 Memory Capacity The number of bits that a semiconductor memory chip can store is called chip capacity. It can be in units of Kbits (kilobits), Mbits (megabits), and so on. This must be distinguished from the storage capacity of computer systems While the memory capacity of a memory IC chip is always given bits, the memory capacity of a computer system is given in bytes o 16M memory chip 16 megabits o A computer comes with 16M memory 16 megabytes Memory chips are organized into a number of locations within the IC Each location can hold 1 bit, 4 bits, 8 bits, or even 16 bits, depending on how it is designed internally o The number of locations within a memory IC depends on the address pins (e.g. 2 X locations, X is the number of address pins) o The number of bits that each location can hold is always equal to the number of data pins (e.g. Y) o The entire chip will contain 2 X * Y bits 3

4 Example 1. A given memory chip has 12 address pins and 4 data pins. Find: (a) The organization, and (b) the capacity. Solution: (a) This memory chip has 4096 locations (2 12 = 4096), and each location can hold 4 bits of data. This gives an organization of , often represented as 4K 4. (b) The capacity is equal to 16K bits since there is a total of 4K locations and each location can hold 4 bits of data. 2. A 512K memory chip has 8 pins for data. Find: (a) The organization, and (b) the number of address pins for this memory chip. Solution: (a) A memory chip with 8 data pins means that each location within the chip can hold 8 bits of data. To find the number of locations within this memory chip, divide the capacity by the number of data pins. 512K/8 = 64K; therefore, the organization for this memory chip is 64K 8 (b) The chip has 16 address lines since 2 16 = 64K 4

5 80C51 Block Diagram Overall system view - 8-bit CPU - 4K Internal RoM - 128B RAM (Maximum 256B) - 64K maximum memory extension (ROM, RAM) 5

6 8051 MCU Memory Structure 4-types of memory in 8051 MCU Program memory Internal (RoM, typically 0 ~ 4K) o ROM PROM EPROM E2PROM Flash, etc. External (RoM) o ROM PROM EPROM E2PROM Flash, etc. ROM is a type of memory that does not lose its contents when the power is turned off, also called nonvolatile memory! Data Memory Internal (RAM, typically 256B) o SRAM NVRAM DRAM, etc. External (RAM) o SRAM NVRAM DRAM, etc. RAM memory is called volatile memory since cutting off the power to the IC will result in the loss of data. RAM is also referred to as RAWM (read and write memory). 6

7 Memory Structure 8051 chip RAM ROM FFFFh 0000h External DATA Memory (up to 64KB) RAM SFR I-RAM Program FFFFh 0000h External CODE Memory (up to 64KB) ROM 7

8 Program Memory Space (ROM) Since the PC (program counter) of the 8031/51 is 16-bit, it is capable of accessing up to 2 16 = 64K bytes of program code In case of 4KB of Internal ROM, the address space is 0000H to 0FFFH For maximum 64K external ROM, the address space is 0000H to FFFFH External ROM access is controlled by EA\ pin If there s no internal ROM, EA\ should be tied LOW EA\ is V DD EA\ is GND EA External ROM 64K FFFFh EA External ROM 64K FFFFh 1000h 0000h 0FFFh 0FFFh Internal ROM 4K Internal ROM 4K 0000h 0000h 8

9 Data Memory Space (RAM) The 8051 s on-chip memory consists of 256 memory bytes organized as follows: Lower128 bytes: o 00h to 1Fh Register Banks o 20h to 2Fh Bit Addressable RAM o 30 to 7Fh General Purpose RAM, byte addressable Higher128 bytes: o 80h to FFh Special Function Registers FFh 80h 7Fh 00h Data Memory Special function registers (SFRs) Internal RAM 7Fh 30h 2Fh 20h 1Fh 18h 17h 10h 0Fh 08h 07h 00h 80 general purpose registers 16 bit-addressable registers Regs (Bank 3) Regs (Bank 2) Regs (Bank 1) Regs (Bank 0) Register Bank0 07h R7 06h R6 05h R5 04h R4 03h R3 02h R2 01h R1 00h R0 9

10 Bit-addressable Registers Bit Addressable RAM: 20h to 2Fh: 128 bits in total numbered 00h to 7Fh. Any one variable can have a value 0 or 1. A bit variable can be set with a command such as SETB and cleared with a command such as CLR. o SETB 25h ;sets the bit 25h (becomes 1) 7Fh 30h 2Fh 20h 1Fh 18h 17h 10h 0Fh 08h 07h 00h o CLR 25h ;clears bit 25h (becomes 0) 80 general purpose registers 16 bit-addressable registers Regs (Bank 3) Regs (Bank 2) Regs (Bank 1) Regs (Bank 0) 7F 7E 7D 7C 7B 7A F 6E 6D 6C 6B 6A F 5E 5D 5C 5B 5A F 4E 4D 4C 4B 4A F 3E 3D 3C 3B 3A F 2E 2D 2C 2B 2A F 1E 1D 1C 1B 1A F 0E 0D 0C 0B 0A

11 Stack Stack is a section of RAM to store information (data or address) temporarily (for interrupt, field, temp. data protection) Last in, first out (LIFO). There is a register inside the CPU to point to it, called SP (stack pointer) register. SP is 8 bits wide (can take values of 00 to FFH), points to the top of the stack. SP = 07h after power-up or reset à RAM location 08h is the first location used for the stack. o MOV SP, #2Fh ;initialize the stack PUSH: storing of a data in the stack POP: pulling the contents off the stack back into a CPU register. In other words, a register is pushed onto the stack to save it and popped off the stack to retrieve it. The job of the SP is very critical when push and pop actions are performed. 11

12 Stack Operation Operation example: PUSH 05h; //firstly SP=SP+1, then store 05h in the address pointed by SP; POP A; //firstly retrieve the data pointed by SP and assign it to A, then SP=SP-1; LIFO Stack operation 12

13 SFR Registers SFRs provide control and data exchange with the microcontroller s resources and peripherals; The SFR registers are located within the Internal Memory in the address range 80h to FFh. Not all locations within this range are defined. Each SFR has a very specific function. Each SFR has an address and a name which reflects the purpose of the SFR. Although 128 byes of the SFR address space is defined only 21 SFR registers are defined in the standard Undefined SFR addresses should not be accessed as this might lead to some unpredictable results. Note some of the SFR registers are bit addressable. SFRs are accessed just like normal Internal RAM locations. Registers which have their byte addresses ending with 0H or 8H are byte- as well as bit- addressable. 13

14 SFR Register Table Special Function Register Symbol Name Byte Address TH1 Timer 1 High 8b 8Dh TH0 Timer 1 Low 8b 8Ch TL1 Timer 0 High 8b 8Bh TL0 Timer 0 Low 8b 8Ah TMOD Timer Mode Control 89h *TCON Timer/Counter Control 88h PCON Power Control 87h DPH Data Pointer High 8b 83h DPL Data Pointer Low 8b 82h SP Stack Pointer 81h *P0 Port 0 80h Special Function Register Symbol Name Byte Address *B B Register F0h *A or ACC Accumulator E0h *PSW Program Status Word D0h *IP Interrupt Priority B8h *Port 3 (P3) Port 3 B0h *IE Interrupt Enable A8h *Port 2 (P2) Port 2 A0h SBUF Serial Port Data Buffer 99h *SCON Serial Port Control 98h *Port 1 (P1) Port 1 90h * indicates the SFR registers which are bit addressable 14

15 Memory Address Modes How to locate the memory? There are a number of addressing modes available to the 8051 instruction set, as follows: Immediate Addressing Register Addressing Direct Addressing Register Indirect Addressing Relative Addressing Absolute Addressing Long Addressing Indexed Addressing Bit Addressing 15

16 Immediate Addressing Immediate addressing: the operand (which immediately follows the instruction code) is the data value to be used. For example: MOV A, #99d ;moves 99 (decimal) to A (accumulator) A E0h 99d The # symbol tells the assembler that immediate addressing mode is used. MOV A,#25H ;load 25H into A MOV R4,#62 ;load 62 into R4 MOV B,#40H ;load 40H into B MOV DPTR,#4521H ;DPTR=4512H MOV DPL,#21H ;This is the same MOV DPH,#45H ;as above MOV DPTR,#68975 ;illegal!! Value > (FFFFH) 16

17 Register Addressing Register addressing: one of the eight general-registers, R0 to R7, A, B, CY, DPTR in SFR can be specified as the instruction operand. For example: ADD A, R5 ;adds register R5 to A (accumulator) A R5 E0h h The source and destination registers must match in size: MOV DPTR,A will give an error; The movement of data between Rn registers is not allowed: MOV R4,R7 is invalid; MOV A,R0 ;copy contents of R0 into A MOV R2,A ;copy contents of A into R2 ADD A,R5 ;add contents of R5 to A ADD A,R7 ;add contents of R7 to A MOV R6,A ;save accumulator in R6 17

18 Direct Addressing Direct addressing: the data value is obtained directly from the memory location specified in the operand. For example: MOV A, 47h ;read the data from Internal RAM address 47h and stores it in A E0h A Internal RAM 48h 47h 46h Direct addressing can be used to access Internal RAM, including the SFR registers, where SFR can be addressed by the names or addresses; Only direct addressing mode is allowed for pushing or popping the stack: PUSH A is invalid; Pushing the accumulator onto the stack must be coded as PUSH 0E0H MOV R0,40H ;save content of 40H in R0 MOV 56H,A ;save content of A in 56H MOV 0E0H,#55H ;is the same as MOV A,#55h ;load 55H into A 18

19 Register Indirect Addressing Register Indirect Addressing: For example: MOV A Internal RAM 52h R0 E0h 54h 54h 00h 53h symbol indicates indirect addressing mode is used. R0 contains a value, for example 54h, which is to be used as the address of the internal RAM location, which contains the operand data. Indirect addressing refers to Internal RAM only and cannot be used to refer to SFR registers. Note, only R0 or R1 can be used as register data pointers for indirect addressing. The 8052 (as opposed to the 8051) has an additional 128 bytes of internal RAM. These 128 bytes of RAM can be accessed only using indirect addressing. 19

20 Relative Addressing Relative addressing: used mostly with certain jump instructions. The relative addressing, often referred to as an offset, is an 8-bit signed number, which is added to the PC to make the address of the next instruction. The offset value gives an address range of to 128 locations. For example: SJMP LABEL_X 2006h 2005h 2004h 2003h 2002h 2001h 2000h 1FFFh Code memory SJMP LABEL_X PC is set to next instruction address: 2002h when SJMP begins execution. The target address is then the sum of the PC + relative offset needed to reach LABEL_X. Offset is 4 in this case. 2002h + 4h = 2006h. An advantage of relative addressing is that the program code is easy to relocate in memory in that the address is relative to the position in memory. 20

21 Absolute, Long and Indexed Addressing Absolute addressing: used only by the AJMP (Absolute Jump) and ACALL (Absolute Call) instructions, Long Addressing: used with the instructions LJMP and LCALL. The address specifies a full 16 bit destination address so that a jump or a call can be made to a location within a 64KByte code memory space (216 = 64K). For example: LJMP 5000h ;full 16 bit address is specified in operand Indexed addressing: the program counter, PC, or the data pointer DTPR, is used as a base address and the accumulator is used as an offset address. The effective address is formed by adding the value from the base address to the value from the offset address. Indexed address in the 8051 is used with the JMP or MOVC instructions. Look up tables are easy to implemented with the help of index address. For example: MOVC o MOVC is a move instruction, which moves data from the external code memory space. o The address operand in this example is formed by adding the content of the DPTR register to the accumulator value. DPTR is the base address and the accumulator is the index address. 21

22 Bit Addressing Bit addressing: access the bit data directly, instead of a byte data, Bit addressable locations: Bit addressable registers in RAM from 20h to 2Fh (128b in total), bit address from 00h to 7Fh o For example: Use bit address directly: MOV C, 30h ;move the data in 30h to C (carrier bit) Byte address + bit location: MOV C, 26h.0 ;move the LSB of the data in 26h to C (carrier bit) Bit addressable registers in SFR o For example: Use bit address directly: MOV C, 97h ;move the data in 97h (MSB of P1) to C Byte address + bit location: MOV C, 90h.7 ;move the MSB of the data in 90h to C Bit name: MOV C, AC ;move the data AC to C 22

23 Bit Addressing To avoid confusion regarding the addresses 00 7FH The 128 bytes of RAM have the byte addresses of 00 7FH can be accessed in byte size using various addressing modes o Direct and register-indirect The 16 bytes of RAM locations 20 2FH have bit address of 00 7FH o We can use only the single-bit instructions and these instructions use only direct addressing mode The BIT directive is a widely used directive to assign the bitaddressable I/O and RAM locations Allow a program to assign the I/O or RAM bit at the beginning of the program, making it easier to modify them 23

24 Addressing Summary Addressing method Immediate Addressing Register Addressing Direct Addressing Register Indirect Addressing Relative Addressing Absolute Addressing Indexed Addressing Bit Addressing Application Constant data assignment for RAM, ROM Locate data in R0 ~ R7, A, B, CY, DPTR Locate data in internal RAM 00H ~ 7Fh, SFR Locate data in internal RAM 00H ~ FFh, external RAM For jump instruction For AJMP and ACALL instruction Use PC or DPTR to address program memory Locate data in internal RAM 20h ~ 2Fh (128b), SFR (93b) 24

25 Practice Read the code: MOV R0, #30h MOV ADD A, R0 A ;immediate ;indirect ;register ;indirect 25

26 Appendix PROM (Programmable ROM) PROM refers to the kind of ROM that the user can burn information into PROM is a user-programmable memory For every bit of the PROM, there exists a fuse If the information burned into PROM is wrong, that PROM must be discarded since its internal fuses are blown permanently PROM is also referred to as OTP (one-time programmable) Programming ROM, also called burning ROM, requires special equipment called a ROM burner or ROM programmer 26

27 Appendix EPROM (Erasable Programmable ROM) EPROM was invented to allow making changes in the contents of PROM after it is burned In EPROM, one can program the memory chip and erase it thousands of times A widely used EPROM is called UVEPROM UV stands for ultra-violet, The only problem with UV-EPROM is that erasing its contents can take up to 20 minutes All UV-EPROM chips have a window that is used to shine ultraviolet (UV) radiation to erase its contents. There is an EPROM programmer (burner), and there is also separate EPROM erasure equipment. The major disadvantage of UV-EPROM, is that it cannot be programmed while in the system board. To program a UV-EPROM chip, the following steps must be taken: Its contents must be erased o To erase a chip, it is removed from its socket on the system board and placed in EPROM erasure equipment to expose it to UV radiation for minutes Program the chip o To program a UV-EPROM chip, place it in the ROM burner o To burn code or data into EPROM, the ROM burner uses 12.5 volts, V pp in the UV-EPROM data sheet or higher, depending on the EPROM type o Place the chip back into its system board socket 27

28 Appendix EEPROM (Electrically Erasable Programmable ROM) EEPROM has several advantage over EPROM Its method of erasure is electrical and therefore instant, as opposed to the 20-minute erasure time required for UVEPROM One can select which byte to be erased, in contrast to UV- EPROM, in which the entire contents of ROM are erased One can program and erase its contents while it is still in the system board o EEPROM does not require an external erasure and programming device o The designer incorporate into the system board the circuitry to program the EEPROM 28

29 Appendix Flash Memory EPROM Flash EPROM has become a popular user-programmable memory chip since the early 1990s The process of erasure of the entire contents takes less than a second, or might say in a flash o The erasure method is electrical o It is commonly called flash memory The major difference between EEPROM and flash memory is o Flash memory s contents are erased, then the entire device is erased There are some flash memories are recently made so that the erasure can be done block by block o One can erase a desired section or byte on EEPROM It is believed that flash memory will replace part of the hard disk as a mass storage medium The flash memory can be programmed while it is in its socket on the system board o Widely used as a way to upgrade PC BIOS ROM Flash memory is semiconductor memory with access time in the range of 100 ns compared with disk access time in the range of tens of milliseconds Flash memory s program/erase cycles must become infinite, like hard disks o Program/erase cycle refers to the number of times that a chip can be erased and programmed before it becomes unusable o The program/erase cycle is 100,000 for flash and EEPROM, 1000 for UV- EPROM 29

30 Appendix Mask ROM Mask ROM refers to a kind of ROM in which the contents are programmed by the IC manufacturer, not user programmable The terminology mask is used in IC fabrication Since the process is costly, mask ROM is used when the needed volume is high and it is absolutely certain that the contents will not change The main advantage of mask ROM is its cost, since it is significantly cheaper than other kinds of ROM, but if an error in the data/code is found, the entire batch must be thrown away 30

31 Appendix SRAM (Static RAM) Storage cells in static RAM memory are made of flip-flops and therefore do not require refreshing in order to keep their data The problem with the use of flip-flops for storage cells is that each cell require at least 6 transistors to build, and the cell holds only 1 bit of data In recent years, the cells have been made of 4 transistors, which still is too many The use of 4-transistor cells plus the use of CMOS technology has given birth to a high capacity SRAM, but its capacity is far below DRAM 31

32 Appendix NV-RAM (Nonvolatile RAM) NV-RAM combines the best of RAM and ROM The read and write ability of RAM, plus the nonvolatility of ROM NV-RAM chip internally is made of the following components It uses extremely power-efficient SRAM cells built out of CMOS It uses an internal lithium battery as a backup energy source It uses an intelligent control circuitry o The main job of this control circuitry is to monitor the V cc pin constantly to detect loss of the external power supply 32

33 Appendix DRAM (Dynamic RAM) Dynamic RAM uses a capacitor to store each bit It cuts down the number of transistors needed to build the cell It requires constant refreshing due to leakage The advantages and disadvantages of DRAM memory The major advantages are high density (capacity), cheaper cost per bit, and lower power consumption per bit The disadvantages is that o it must be refreshed periodically, due to the fact that the capacitor cell loses its charge; o While it is being refreshed, the data cannot be accessed In DRAM there is a problem of packing a large number of cells into a single chip with the normal number of pins assigned to addresses Using conventional method of data access, large number of pins defeats the purpose of high density and small packaging o For example, a 64K-bit chip (64K 1) must have 16 address lines and 1 data line, requiring 16 pins to send in the address The method used is to split the address in half and send in each half of the address through the same pins, thereby requiringcfewer address pins 33

8051 INTERFACING TO EXTERNAL MEMORY

8051 INTERFACING TO EXTERNAL MEMORY 8051 INTERFACING TO EXTERNAL MEMORY Memory Capacity The number of bits that a semiconductor memory chip can store Called chip capacity It can be in units of Kbits (kilobits), Mbits (megabits), and so on

More information

Memory organization Programming model - Program status word - register banks - Addressing modes - instruction set Programming examples.

Memory organization Programming model - Program status word - register banks - Addressing modes - instruction set Programming examples. MICROCONTROLLERS AND APPLICATIONS 1 Module 2 Module-2 Contents: Memory organization Programming model - Program status word - register banks - Addressing modes - instruction set Programming examples. MEMORY

More information

Lecture Objectives. Introduction to Computing Chapter 0. Topics. Numbering Systems 04/09/2017

Lecture Objectives. Introduction to Computing Chapter 0. Topics. Numbering Systems 04/09/2017 Lecture Objectives Introduction to Computing Chapter The AVR microcontroller and embedded systems using assembly and c Students should be able to: Convert between base and. Explain the difference between

More information

The Microcontroller. Lecture Set 3. Major Microcontroller Families. Example Microcontroller Families Cont. Example Microcontroller Families

The Microcontroller. Lecture Set 3. Major Microcontroller Families. Example Microcontroller Families Cont. Example Microcontroller Families The Microcontroller Lecture Set 3 Architecture of the 8051 Microcontroller Microcontrollers can be considered as self-contained systems with a processor, memory and I/O ports. In most cases, all that is

More information

UNIT-III ASSEMBLY LANGUAGE PROGRAMMING. The CPU can access data in various ways, which are called addressing modes

UNIT-III ASSEMBLY LANGUAGE PROGRAMMING. The CPU can access data in various ways, which are called addressing modes 8051 Software Overview: 1. Addressing Modes 2. Instruction Set 3. Programming 8051 Addressing Modes: UNIT-III ASSEMBLY LANGUAGE PROGRAMMING The CPU can access data in various ways, which are called addressing

More information

Question Bank Microprocessor and Microcontroller

Question Bank Microprocessor and Microcontroller QUESTION BANK - 2 PART A 1. What is cycle stealing? (K1-CO3) During any given bus cycle, one of the system components connected to the system bus is given control of the bus. This component is said to

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller The 8051, Motorola and PIC families are the 3 leading sellers in the microcontroller market. The 8051 microcontroller was originally developed by Intel in the late 1970 s. Today many

More information

Microcontroller Intel [Instruction Set]

Microcontroller Intel [Instruction Set] Microcontroller Intel 8051 [Instruction Set] Structure of Assembly Language [ label: ] mnemonic [operands] [ ;comment ] Example: MOV R1, #25H ; load data 25H into R1 2 8051 Assembly Language Registers

More information

8051 Overview and Instruction Set

8051 Overview and Instruction Set 8051 Overview and Instruction Set Curtis A. Nelson Engr 355 1 Microprocessors vs. Microcontrollers Microprocessors are single-chip CPUs used in microcomputers Microcontrollers and microprocessors are different

More information

MODULE-1. Short Answer Questions

MODULE-1. Short Answer Questions MODULE-1 Short Answer Questions 1. Give the comparison between microprocessor and microcontroller. It is very clear from figure that in microprocessor we have to interface additional circuitry for providing

More information

Chapter TEN. Memory and Memory Interfacing

Chapter TEN. Memory and Memory Interfacing Chapter TEN Memory and Memory Interfacing OBJECTIVES this chapter enables the student to: Define the terms capacity, organization, and speed as used in semiconductor memories. Calculate the chip capacity

More information

Principle and Interface Techniques of Microcontroller

Principle and Interface Techniques of Microcontroller Principle and Interface Techniques of Microcontroller --8051 Microcontroller and Embedded Systems Using Assembly and C LI, Guang ( 李光 ) Prof. PhD, DIC, MIET WANG, You ( 王酉 ) PhD, MIET 杭州 浙江大学 2014 Chapter

More information

MICROCONTROLLER UNIT 1

MICROCONTROLLER UNIT 1 MICROCONTROLLER UNIT 1 OUTLINE INTRODUCTION MICROCONTROLLERS AND EMBEDDED PROCESSORS OVERVIEW OF THE 8051 8051 MICTROCONTROLLER HARDWARE ADDRESSING MODES INTRODUCTION The first task to use a new computer

More information

Module Contents of the Module Hours COs

Module Contents of the Module Hours COs Microcontrollers (EE45): Syllabus: Module Contents of the Module Hours COs 1 8051 MICROCONTROLLER ARCHITECTURE: Introduction to Microprocessors and Microcontrollers, the 8051 Architecture, 08 1 and pin

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 4 The 8051 Architecture Department of Electrical Engineering Lecture 4 The 8051 Architecture 1 In this Lecture Overview General physical & operational features Block diagram Pin assignments Logic symbol Hardware description Pin

More information

TUTORIAL. Donal Heffernan University of Limerick May Tutorial D.Heffernan 2000,

TUTORIAL. Donal Heffernan University of Limerick May Tutorial D.Heffernan 2000, 8051 TUTORIAL Donal Heffernan University of Limerick May-2002 8051 Tutorial D.Heffernan 2000, 2001 1 Blank 8051 Tutorial D.Heffernan 2000, 2001 2 Some reference material: Test books + MacKenzie Scott.

More information

Chapter Addressing Modes

Chapter Addressing Modes Chapter 5 8051 Addressing Modes 1 Sections 5.1 Immediate and register addressing modes 5.2 Accessing memory using various address modes 2 Objective 程式中的資料可能是放在 Register 中, 或在 RAM 中某一位址上, 或在 ROM 一塊特殊區域放置資料,

More information

Embedded Controller Programming

Embedded Controller Programming Embedded Controller Programming Counters, Timers and I/O in Assembly Language Ken Arnold Copyright 2000-2004 Ken Arnold 1 Outline Timer/Counters Serial Port More 8051 Instructions Examples Copyright 2000-2004

More information

ELEG3924 Microprocessor

ELEG3924 Microprocessor Department of Electrical Engineering University of Arkansas ELEG3924 Microprocessor Ch.2 Assembly Language Programming Dr. Jing Yang jingyang@uark.edu 1 OUTLINE Inside 8051 Introduction to assembly programming

More information

Principle and Interface Techniques of Microcontroller

Principle and Interface Techniques of Microcontroller Principle and Interface Techniques of Microcontroller --8051 Microcontroller and Embedded Systems Using Assembly and C LI, Guang ( 李光 ) Prof. PhD, DIC, MIET WANG, You ( 王酉 ) PhD, MIET 杭州 浙江大学 2015 Chapter

More information

Interface DAC to a PC. Control Word of MC1480 DAC (or DAC 808) 8255 Design Example. Engineering 4862 Microprocessors

Interface DAC to a PC. Control Word of MC1480 DAC (or DAC 808) 8255 Design Example. Engineering 4862 Microprocessors Interface DAC to a PC Engineering 4862 Microprocessors Lecture 22 Cheng Li EN-4012 licheng@engr.mun.ca DAC (Digital-to-Analog Converter) Device used to convert digital pulses to analog signals Two methods

More information

CHAPTER ASSEMBLY LANGUAGE PROGRAMMING

CHAPTER ASSEMBLY LANGUAGE PROGRAMMING CHAPTER 2 8051 ASSEMBLY LANGUAGE PROGRAMMING Registers Register are used to store information temporarily: A byte of data to be processed An address pointing to the data to be fetched The vast majority

More information

8051 Instruction Set

8051 Instruction Set 8051 Instruction Set 23-ug-16 ptkarule@rediffmail.com 1 Programmers Model of 8051 7FH 30H 2FH 20H 1FH 00H General Purpose Bit addressable Register Banks 1FH 18H 17H 10H 0FH 08H 07H 00H R7 R6 R5 R4 R3 R2

More information

Chapter 09. Programming in Assembly

Chapter 09. Programming in Assembly Chapter 09 Programming in Assembly Lesson 03 Programming Approach for Main and Interrupt Service Routines in 8051 Program Approach for programming Main Program Instructions 3 Main program initial instructions

More information

ORG ; Week8. Memory and Memory Interfacing

ORG ; Week8. Memory and Memory Interfacing Dec 10 Hex A Bin 00001010 ORG ; Week8 Memory and Memory Interfacing OBJECTIVES this chapter enables the student to: Define the terms capacity, organization, and speed as used in semiconductor memories.

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller 1 Salient Features (1). 8 bit microcontroller originally developed by Intel in 1980. (2). High-performance CMOS Technology. (3). Contains Total 40 pins. (4). Address bus is of 16 bit

More information

CPEG300 Embedded System Design. Lecture 6 Interrupt System

CPEG300 Embedded System Design. Lecture 6 Interrupt System CPEG300 Embedded System Design Lecture 6 Interrupt System Hamad Bin Khalifa University, Spring 2018 Correction Lecture 3, page 18: Only direct addressing mode is allowed for pushing or popping the stack:

More information

Introduction To MCS-51

Introduction To MCS-51 Introduction To MCS-51 By Charoen Vongchumyen Department of Computer Engineering Faculty of Engineering KMITLadkrabang 8051 Hardware Basic Content Overview Architechture Memory map Register Interrupt Timer/Counter

More information

ENE 334 Microprocessors

ENE 334 Microprocessors Page 1 ENE 334 Microprocessors Lecture 9: MCS-51: Moving Data : Dejwoot KHAWPARISUTH http://webstaff.kmutt.ac.th/~dejwoot.kha/ ENE 334 MCS-51 Moving Data Page 2 Moving Data: Objectives Use commands that

More information

ELEG3923 Microprocessor Ch.2 Assembly Language Programming

ELEG3923 Microprocessor Ch.2 Assembly Language Programming Department of Electrical Engineering University of Arkansas ELEG3923 Microprocessor Ch.2 Assembly Language Programming Dr. Jingxian Wu wuj@uark.edu OUTLINE 2 Inside 8051 Introduction to assembly programming

More information

8051 Microcontrollers

8051 Microcontrollers 8051 Microcontrollers Richa Upadhyay Prabhu NMIMS s MPSTME richa.upadhyay@nmims.edu March 8, 2016 Controller vs Processor Controller vs Processor Introduction to 8051 Micro-controller In 1981,Intel corporation

More information

CS 320. Computer Architecture Core Architecture

CS 320. Computer Architecture Core Architecture CS 320 Computer Architecture 8051 Core Architecture Evan Hallam 19 April 2006 Abstract The 8051 is an 8-bit microprocessor designed originally in the 1980 s by the Intel Corporation. This inexpensive and

More information

8051 Memory Organization BY D. BALAKRISHNA, Research Assistant, IIIT-H Chapter 1: Memory Organization There are 2 types of memories available in 8051 microcontroller. Program memory/c code memory (ROM)

More information

Module I. Microcontroller can be classified on the basis of their bits processed like 8bit MC, 16bit MC.

Module I. Microcontroller can be classified on the basis of their bits processed like 8bit MC, 16bit MC. MICROCONTROLLERS AND APPLICATIONS 1 Module 1 Module I Introduction to Microcontrollers: Comparison with Microprocessors Harvard and Von Neumann Architectures - 80C51 microcontroller features - internal

More information

8051 Microcontroller

8051 Microcontroller 8051 Microcontroller EE4380 Fall 2001 Pari vallal Kannan Center for Integrated Circuits and Systems University of Texas at Dallas 8051 Architecture Programmer s View Register Set Instruction Set Memory

More information

Assembly Language programming (2)

Assembly Language programming (2) EEE3410 Microcontroller Applications LABORATORY Experiment 2 Assembly Language programming (2) Name Class Date Class No. Marks Arithmetic, Logic and Jump instructions Objectives To learn and practice the

More information

Grundlagen Microcontroller Memory. Günther Gridling Bettina Weiss

Grundlagen Microcontroller Memory. Günther Gridling Bettina Weiss Grundlagen Microcontroller Memory Günther Gridling Bettina Weiss 1 Lecture Overview Memory Memory Types Address Space Allocation 2 Memory Requirements What do we want to store? program constants (e.g.

More information

Basic Organization Memory Cell Operation. CSCI 4717 Computer Architecture. ROM Uses. Random Access Memory. Semiconductor Memory Types

Basic Organization Memory Cell Operation. CSCI 4717 Computer Architecture. ROM Uses. Random Access Memory. Semiconductor Memory Types CSCI 4717/5717 Computer Architecture Topic: Internal Memory Details Reading: Stallings, Sections 5.1 & 5.3 Basic Organization Memory Cell Operation Represent two stable/semi-stable states representing

More information

Figure Programming model

Figure Programming model LAB 1: Intel 8051 CPU PROGRAMMING DATA TRANSFER INSTRUCTIONS OBJECTIVES At the end of the laboratory works, you should be able to write simple assembly language programs for the Intel 8051 CPU using data

More information

Microprocessors 1. The 8051 Instruction Set. Microprocessors 1 1. Msc. Ivan A. Escobar Broitman

Microprocessors 1. The 8051 Instruction Set. Microprocessors 1 1. Msc. Ivan A. Escobar Broitman Microprocessors 1 The 8051 Instruction Set Microprocessors 1 1 Instruction Groups The 8051 has 255 instructions Every 8-bit opcode from 00 to FF is used except for A5. The instructions are grouped into

More information

8051 Microcontrollers

8051 Microcontrollers 8051 Microcontrollers Richa Upadhyay Prabhu NMIMS s MPSTME richa.upadhyay@nmims.edu March 15, 2016 8051 INSTRUCTIONS JUMP, LOOP AND CALL INSTRUCTIONS 8051 INSTRUCTIONS Repeating a sequence of instructions

More information

8-bit Microcontroller with 8K Bytes In-System Programmable Flash AT89S52

8-bit Microcontroller with 8K Bytes In-System Programmable Flash AT89S52 Features Compatible with MCS -51 Products 8K Bytes of In-System Programmable (ISP) Flash Memory Endurance: 10,000 Write/Erase Cycles 4.0V to 5.5V Operating Range Fully Static Operation: 0 Hz to 33 MHz

More information

8051 Microcontroller Assembly Programming

8051 Microcontroller Assembly Programming 8051 Microcontroller Assembly Programming EE4380 Fall 2002 Class 3 Pari vallal Kannan Center for Integrated Circuits and Systems University of Texas at Dallas Topics Machine code 8051 Addressing Modes

More information

SOLUTION MANUAL FOR THE 8051 MICROCONTROLLER 4TH EDITION BY MACKENZIE AND PHAN

SOLUTION MANUAL FOR THE 8051 MICROCONTROLLER 4TH EDITION BY MACKENZIE AND PHAN SOLUTION MANUAL FOR THE 8051 MICROCONTROLLER 4TH EDITION BY MACKENZIE AND PHAN Chapter 1 - Introduction to Microcontrollers 1. (a)the first widely used microprocessor was the 8080. (b) The 8080 was introduced

More information

UNIT IV MICROCONTROLLER

UNIT IV MICROCONTROLLER UNIT IV 8051- MICROCONTROLLER Prepared by R. Kavitha Page 1 Application Prepared by R. Kavitha Page 2 Pin Description of the 8051 UNIT IV- 8051 MICROCONTROLLER P1.0 P1.1 P1.2 P1.3 P1.4 P1.5 P1.6 P1.7 RST

More information

Lecture 1. Course Overview and The 8051 Architecture

Lecture 1. Course Overview and The 8051 Architecture Lecture 1 Course Overview and The 8051 Architecture MCUniversity Program Lectures 8051 architecture t System overview of C8051F020 8051 instruction set System clock, crossbar and GPIO Assembler directives

More information

Module 5a: Introduction To Memory System (MAIN MEMORY)

Module 5a: Introduction To Memory System (MAIN MEMORY) Module 5a: Introduction To Memory System (MAIN MEMORY) R E F E R E N C E S : S T A L L I N G S, C O M P U T E R O R G A N I Z A T I O N A N D A R C H I T E C T U R E M O R R I S M A N O, C O M P U T E

More information

MICROPROCESSORS AND MICROCONTROLLERS MATERIAL. Features of 8051:

MICROPROCESSORS AND MICROCONTROLLERS MATERIAL. Features of 8051: DEPARTMENT OF ECE MICROPROCESSORS AND MICROCONTROLLERS MATERIAL UNIT V 8051 MICROCONTROLLERS To make a complete microcomputer system, only microprocessor is not sufficient. It is necessary to add other

More information

EE6502- MICROPROCESSOR AND MICROCONTROLLER

EE6502- MICROPROCESSOR AND MICROCONTROLLER . EE6502- MICROPROCESSOR AND MICROCONTROLLER UNIT III - 8051 MICROCONTROLLER PART - A 1. What is Microcontroller? A device which contains the microprocessor with integrated peripherals like memory, serial

More information

Microcontroller Systems. ELET 3232 Topic 11: General Memory Interfacing

Microcontroller Systems. ELET 3232 Topic 11: General Memory Interfacing Microcontroller Systems ELET 3232 Topic 11: General Memory Interfacing 1 Objectives To become familiar with the concepts of memory expansion and the data and address bus To design embedded systems circuits

More information

Chapter 9. Programming Framework

Chapter 9. Programming Framework Chapter 9 Programming Framework Lesson 1 Registers Registers Pointers Accumulator Status General Purpose Outline CPU Registers Examples 8-bitA (Accumulator) Register 8-bit B Register 8-bitPSW (Processor

More information

MODEL ANSWER SUMMER 17 EXAMINATION Subject Title: Microcontroller and Applications Subject Code:

MODEL ANSWER SUMMER 17 EXAMINATION Subject Title: Microcontroller and Applications Subject Code: MODEL ANSWER SUMMER 17 EXAMINATION Subject Title: Microcontroller and Applications Subject Code: I m p o r t a n t I n s t r u c t i o n s t o e x a m i n e r s : 1) The answers should be examined by key

More information

ET355 Microprocessors Friday 6:00 pm 10:20 pm

ET355 Microprocessors Friday 6:00 pm 10:20 pm ITT Technical Institute ET355 Microprocessors Friday 6:00 pm 10:20 pm Unit 3 Chapter 4, pp. 100-106 Chapter 5, pp. 109-135 Unit 3 Objectives Lecture: Review I/O Ports and Flags of 805x Microprocessor Review

More information

ET2640 Microprocessors

ET2640 Microprocessors ET2640 Microprocessors Unit -2 Processor Programming Concepts Basic Control Instructor : Stan Kong Email : skong@itt-tech.edu Figure 2 4 Bits of the PSW Register 8051 REGISTER BANKS AND STACK 80 BYTES

More information

MASSEY UNIVERSITY PALMERSTON NORTH CAMPUS

MASSEY UNIVERSITY PALMERSTON NORTH CAMPUS MASSEY UNIVERSITY PALMERSTON NORTH CAMPUS EXAMINATION FOR 159.233 COMPUTER SYSTEMS Semester One June 2008 Time allowed: THREE (3) hours This exam contains THREE (3) questions ANSWER ALL THREE (3) QUESTIONS

More information

William Stallings Computer Organization and Architecture 8th Edition. Chapter 5 Internal Memory

William Stallings Computer Organization and Architecture 8th Edition. Chapter 5 Internal Memory William Stallings Computer Organization and Architecture 8th Edition Chapter 5 Internal Memory Semiconductor Memory The basic element of a semiconductor memory is the memory cell. Although a variety of

More information

e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: 8051 Architecture Module No: CS/ES/5 Quadrant 1 e-text

e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: 8051 Architecture Module No: CS/ES/5 Quadrant 1 e-text e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: 8051 Architecture Module No: CS/ES/5 Quadrant 1 e-text In this lecture the detailed architecture of 8051 controller, register bank,

More information

Programming Book Microcontroller Kit. Rev 3.0 January, Wichit Sirichote

Programming Book Microcontroller Kit. Rev 3.0 January, Wichit Sirichote Programming Book1 8051 Microcontroller Kit Rev 3.0 January, 016 016 Wichit Sirichote 1 Contents Overview...3 SAFTY INFORMATION...3 Tools...3 Experiment 1 Blinking LED...4 Experiment Binary number counting...9

More information

Dodatak. Skup instrukcija

Dodatak. Skup instrukcija Dodatak Skup instrukcija Arithmetic Operations [@Ri] implies contents of memory location pointed to by R0 or R1 Rn refers to registers R0-R7 of the currently selected register bank 2 ADD A,

More information

Architecture & Instruction set of 8085 Microprocessor and 8051 Micro Controller

Architecture & Instruction set of 8085 Microprocessor and 8051 Micro Controller of 8085 microprocessor 8085 is pronounced as "eighty-eighty-five" microprocessor. It is an 8-bit microprocessor designed by Intel in 1977 using NMOS technology. It has the following configuration 8-bit

More information

Memory & Simple I/O Interfacing

Memory & Simple I/O Interfacing Chapter 10 Memory & Simple I/O Interfacing Expected Outcomes Explain the importance of tri-state devices in microprocessor system Distinguish basic type of semiconductor memory and their applications Relate

More information

UNIT MICROCONTROLLER AND ITS PROGRAMMING

UNIT MICROCONTROLLER AND ITS PROGRAMMING M i c r o p r o c e s s o r s a n d M i c r o c o n t r o l l e r s P a g e 1 UNIT-7 8051 MICROCONTROLLER AND ITS PROGRAMMING INTRODUCTION The microcontroller incorporates all the features that are found

More information

Contents 8051 Instruction Set BY D. BALAKRISHNA, Research Assistant, IIIT-H Chapter I : Control Transfer Instructions Lesson (a): Loop Lesson (b): Jump (i) Conditional Lesson (c): Lesson (d): Lesson (e):

More information

SN8F5000 Family Instruction Set

SN8F5000 Family Instruction Set SONiX Technology Co., Ltd. 8051-based Microcontroller 1 Overview SN8F5000 is 8051 Flash Type microcontroller supports comprehensive assembly instructions and which are fully compatible with standard 8051.

More information

Summer 2003 Lecture 18 07/09/03

Summer 2003 Lecture 18 07/09/03 Summer 2003 Lecture 18 07/09/03 NEW HOMEWORK Instruction Execution Times: The 8088 CPU is a synchronous machine that operates at a particular clock frequency. In the case of the original IBM PC, that clock

More information

Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices,

Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices, Understanding the basic building blocks of a microcontroller device in general. Knows the terminologies like embedded and external memory devices, CISC and RISC processors etc. Knows the architecture and

More information

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Moodle 4 WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Advanced Microprocessors and Introduction to Microcontroller Moodle developed By Dr. S. R. Kumbhar Department of Electronics Willingdon

More information

Digital Blocks Semiconductor IP

Digital Blocks Semiconductor IP 805 SFR Bus Digital Blocks Semiconductor IP 805 Microcontroller Configurable Peripherals General Description The Digital Blocks (Configurable Peripherals) Microcontroller Verilog IP Core is complaint with

More information

CREATED BY M BILAL & Arslan Ahmad Shaad Visit:

CREATED BY M BILAL & Arslan Ahmad Shaad Visit: CREATED BY M BILAL & Arslan Ahmad Shaad Visit: www.techo786.wordpress.com Q1: Define microprocessor? Short Questions Chapter No 01 Fundamental Concepts Microprocessor is a program-controlled and semiconductor

More information

Chapter 5 Internal Memory

Chapter 5 Internal Memory Chapter 5 Internal Memory Memory Type Category Erasure Write Mechanism Volatility Random-access memory (RAM) Read-write memory Electrically, byte-level Electrically Volatile Read-only memory (ROM) Read-only

More information

Semiconductor Memories: RAMs and ROMs

Semiconductor Memories: RAMs and ROMs Semiconductor Memories: RAMs and ROMs Lesson Objectives: In this lesson you will be introduced to: Different memory devices like, RAM, ROM, PROM, EPROM, EEPROM, etc. Different terms like: read, write,

More information

8051 Addressing Modes

8051 Addressing Modes 8051 Addressing Modes Lets begin this article with a simple question. What is an addressing mode?. A simple question always has a simple answer too. Addressing mode is a way to address an operand. Operand

More information

EE 308: Microcontrollers

EE 308: Microcontrollers EE 308: Microcontrollers AVR Architecture Aly El-Osery Electrical Engineering Department New Mexico Institute of Mining and Technology Socorro, New Mexico, USA January 23, 2018 Aly El-Osery (NMT) EE 308:

More information

ENE 334 Microprocessors

ENE 334 Microprocessors Page 1 ENE 334 Microprocessors Lecture 7: MCS-51 Architecture I : Dejwoot KHAWPARISUTH http://webstaff.kmutt.ac.th/~dejwoot.kha/ ENE 334 MCS-51 Architecture I Page 2 Outlines: 8051 Microcontroller Hardware

More information

8051 microcontrollers

8051 microcontrollers 8051 microcontrollers Presented by: Deepak Kumar Rout Synergy Institute of Engineering and Technology, Dhenkanal Chapter 2 Introduction Intel MCS-51 family of microcontrollers consists of various devices

More information

8051 Microcontroller. Ali Ziya Alkar 1

8051 Microcontroller. Ali Ziya Alkar 1 8051 Microcontroller Ali Ziya Alkar 1 8051 Introduction 8051 is one of the most popular microcontrollers in use today. Many derivative microcontrollers have since been developed that are based on--and

More information

Lecture-7 Characteristics of Memory: In the broad sense, a microcomputer memory system can be logically divided into three groups: 1) Processor

Lecture-7 Characteristics of Memory: In the broad sense, a microcomputer memory system can be logically divided into three groups: 1) Processor Lecture-7 Characteristics of Memory: In the broad sense, a microcomputer memory system can be logically divided into three groups: 1) Processor memory 2) Primary or main memory 3) Secondary memory Processor

More information

TUTORIAL Assembly Language programming (2)

TUTORIAL Assembly Language programming (2) 8051 Assembly Language programming (2) TUTORIAL 4 EEE3410 Microcontroller Applications 1. Write the instructions to move value 34h into register A and value 3Fh into register B, then add them together.

More information

UNIT 2 THE 8051 INSTRUCTION SET AND PROGRAMMING

UNIT 2 THE 8051 INSTRUCTION SET AND PROGRAMMING UNIT 2 THE 8051 INSTRUCTION SET AND PROGRAMMING Instructions Alphabetical List of Instructions ACALL: Absolute Call ADD, ADDC: Add Accumulator (With Carry) AJMP: Absolute Jump ANL: Bitwise AND CJNE: Compare

More information

Digital Blocks Semiconductor IP

Digital Blocks Semiconductor IP Digital Blocks Semiconductor IP 805 Microcontroller General Description The Digital Blocks Microcontroller Verilog IP Core is complaint with the MCS 5 Instruction Set and contains standard 805 MCU peripherals,

More information

Embedded Systems Design: A Unified Hardware/Software Introduction. Outline. Chapter 5 Memory. Introduction. Memory: basic concepts

Embedded Systems Design: A Unified Hardware/Software Introduction. Outline. Chapter 5 Memory. Introduction. Memory: basic concepts Hardware/Software Introduction Chapter 5 Memory Outline Memory Write Ability and Storage Permanence Common Memory Types Composing Memory Memory Hierarchy and Cache Advanced RAM 1 2 Introduction Memory:

More information

Embedded Systems Design: A Unified Hardware/Software Introduction. Chapter 5 Memory. Outline. Introduction

Embedded Systems Design: A Unified Hardware/Software Introduction. Chapter 5 Memory. Outline. Introduction Hardware/Software Introduction Chapter 5 Memory 1 Outline Memory Write Ability and Storage Permanence Common Memory Types Composing Memory Memory Hierarchy and Cache Advanced RAM 2 Introduction Embedded

More information

Assembly Language programming (1)

Assembly Language programming (1) EEE3410 Microcontroller Applications LABORATORY Experiment 1 Assembly Language programming (1) Name Class Date Class No. Marks Familiarisation and use of 8051 Simulation software Objectives To learn how

More information

Computer Organization. 8th Edition. Chapter 5 Internal Memory

Computer Organization. 8th Edition. Chapter 5 Internal Memory William Stallings Computer Organization and Architecture 8th Edition Chapter 5 Internal Memory Semiconductor Memory Types Memory Type Category Erasure Write Mechanism Volatility Random-access memory (RAM)

More information

Microcontroller. Instruction set of 8051

Microcontroller. Instruction set of 8051 UNIT 2: Addressing Modes and Operations: Introduction, Addressing modes, External data Moves, Code Memory, Read Only Data Moves / Indexed Addressing mode, PUSH and POP Opcodes, Data exchanges, Example

More information

C51 Family. Architectural Overview of the C51 Family. Summary

C51 Family. Architectural Overview of the C51 Family. Summary Architectural Overview of the C51 Family C51 Family Summary 1. Introduction............................................................ I.1. 1.1. TSC80C51/80C51/80C31.................................................................

More information

M. Sc (CS) (II Semester) Examination, Subject: Computer System Architecture Paper Code: M.Sc-CS-203. Time: Three Hours] [Maximum Marks: 60

M. Sc (CS) (II Semester) Examination, Subject: Computer System Architecture Paper Code: M.Sc-CS-203. Time: Three Hours] [Maximum Marks: 60 M. Sc (CS) (II Semester) Examination, 2012-13 Subject: Computer System Architecture Paper Code: M.Sc-CS-203 Time: Three Hours] [Maximum Marks: 60 Note: Question Number 1 is compulsory. Answer any four

More information

Memory Expansion. Lecture Embedded Systems

Memory Expansion. Lecture Embedded Systems Memory Expansion Lecture 22 22-1 In These Notes... Memory Types Memory Expansion Interfacing Parallel Serial Direct Memory Access controllers 22-2 Memory Characteristics and Issues Volatility - Does it

More information

CPEG300 Embedded System Design. Lecture 8 Timer

CPEG300 Embedded System Design. Lecture 8 Timer CPEG300 Embedded System Design Lecture 8 Timer Hamad Bin Khalifa University, Spring 2018 Review 8051 port and port schematic Internal read/write data path Serial communication vs. parallel communication

More information

UNIT MICROCONTROLLER

UNIT MICROCONTROLLER Page UNIT-5 805 MICROCONTROLLER INTRODUCTION The microcontroller incorporates all the features that are found in microprocessor. The microcontroller has built in ROM, RAM, Input Output ports, Serial Port,

More information

MICROPROCESSOR & MICROCONTROLLER

MICROPROCESSOR & MICROCONTROLLER a) From road north to East From road east to north From road south to west From road west to south From road west to north b) From road north to East From road south to west From road south to north From

More information

SECURE MICROCONTROLLER USER S GUIDE... 1

SECURE MICROCONTROLLER USER S GUIDE... 1 TABLE OF CONTENTS SECURE MICROCONTROLLER USER S GUIDE......................................... Section Introduction.......................................................................... 2 Section 2

More information

Chapter 1 Microprocessor architecture ECE 3120 Dr. Mohamed Mahmoud http://iweb.tntech.edu/mmahmoud/ mmahmoud@tntech.edu Outline 1.1 Computer hardware organization 1.1.1 Number System 1.1.2 Computer hardware

More information

80C51 family programmer s guide and instruction set. 80C51 Family. PROGRAMMER S GUIDE AND INSTRUCTION SET Memory Organization. Philips Semiconductors

80C51 family programmer s guide and instruction set. 80C51 Family. PROGRAMMER S GUIDE AND INSTRUCTION SET Memory Organization. Philips Semiconductors PROGRAMMER S GUIDE AND INSTRUCTION SET Memory Organization Program Memory The 80C51 has separate address spaces for program and data memory. The Program memory can be up to 64k bytes long. The lower 4k

More information

COMP3221: Microprocessors and. and Embedded Systems. Overview. Lecture 23: Memory Systems (I)

COMP3221: Microprocessors and. and Embedded Systems. Overview. Lecture 23: Memory Systems (I) COMP3221: Microprocessors and Embedded Systems Lecture 23: Memory Systems (I) Overview Memory System Hierarchy RAM, ROM, EPROM, EEPROM and FLASH http://www.cse.unsw.edu.au/~cs3221 Lecturer: Hui Wu Session

More information

Introduction to uc & Embedded Systems

Introduction to uc & Embedded Systems Introduction to uc & Embedded Systems Prepared by, Tamim Roshdy Embedded Systems What is an embedded system? An embedded system is an application that contains at least one programmable computer (typically

More information

SUMMER 13 EXAMINATION

SUMMER 13 EXAMINATION MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC - 27001-2005 Certified) Subject Code: 12187 SUMMER 13 EXAMINATION Model Answer Important Instructions to examiners: 1) The answers should

More information

UNIT THE 8051 INSTRUCTION SET AND PROGRAMMING

UNIT THE 8051 INSTRUCTION SET AND PROGRAMMING UNIT THE 8051 INSTRUCTION SET AND PROGRAMMING Instructions Alphabetical List of Instructions ACALL: Absolute Call ADD, ADDC: Add Accumulator (With Carry) AJMP: Absolute Jump ANL: Bitwise AND CJNE: Compare

More information

Memory Overview. Overview - Memory Types 2/17/16. Curtis Nelson Walla Walla University

Memory Overview. Overview - Memory Types 2/17/16. Curtis Nelson Walla Walla University Memory Overview Curtis Nelson Walla Walla University Overview - Memory Types n n n Magnetic tape (used primarily for long term archive) Magnetic disk n Hard disk (File, Directory, Folder) n Floppy disks

More information

Contents. Join the Technical Community Today!

Contents. Join the Technical Community Today! Contents CHAPTER 1: INTRODUCTION... 5 1. WELCOME... 5 1.2 PS 8051 BOARD OVERVIEW... 6 1.3 PS 8051 SPECIFICATIONS... 7 CHAPTER 2: SYSTEM DESCRIPTION... 9 2.1 HARDWARE... 9 2.2 MAPPING OF DEVICES... 11 2.2.1

More information