First Present 80C51

download First Present 80C51

of 24

  • date post

    05-Apr-2018
  • Category

    Documents

  • view

    228
  • download

    0

Transcript of First Present 80C51

  • 7/31/2019 First Present 80C51

    1/24

    Innostor Technology Corp.

    80C51

    Present: Chien-Yu Chen

    1

  • 7/31/2019 First Present 80C51

    2/24

    Innostor Technology Corporation

    Outline

    1. ARCHITECTURE

    2. MEMORY ORGANIZATION

    1. Program Memory

    2. Data Memory

    3. Addressing Modes

    4. Instructions

    2

  • 7/31/2019 First Present 80C51

    3/24

    Innostor Technology Corporation

    ARCHITECTURE

    All 80C51 devices have separate address spaces for program anddata memory, as shown in Figures 2.

    data memoryprogram memory

    3

  • 7/31/2019 First Present 80C51

    4/24

    Innostor Technology Corporation

    Program Memory

    Program memory (ROM, EPROM) can only be read, not written to.

    can be up to 64k bytes.

    In the 80C51, the lowest 4k bytes of program are on-chip. In the ROMless versions, all program memory is external.

    The read strobe for external program memory is the

    PSEN (program store enable).

    4

  • 7/31/2019 First Present 80C51

    5/24

    Innostor Technology Corporation

    Program Memory

    Figure 3 shows a map of the lower part of the Program Memory.

    5

  • 7/31/2019 First Present 80C51

    6/24

    Innostor Technology Corporation

    Interrupt Structure

    The 80C51 and its ROMless and EPROM versions have 5

    interrupt sources:

    2 external interrupts, 2 timer interrupts, and the serial port interrupt.

    6

  • 7/31/2019 First Present 80C51

    7/24Innostor Technology Corporation

    Data Memory

    Data Memory (RAM) occupies a separate address space from Program Memory.

    In the 80C51, the lowest 128 bytes(00H~7FH) of data memory are

    on-chip.

    In the ROMless version, the lowest 128 bytes are on-chip. Up to 64k bytes of external RAM can be addressed in the external

    Data Memory space.

    As needed during external Data Memory accesses, theCPU generates read signal RD and write signal WR.

    7

  • 7/31/2019 First Present 80C51

    8/24Innostor Technology Corporation

    Data Memory

    8

  • 7/31/2019 First Present 80C51

    9/24Innostor Technology Corporation

    Data Memory

    The Lower 128 bytes of RAM are present in all 80C51 devices as

    mapped in Figure 7. The lowest 32 bytes are grouped into 4 banks of8

    registers. Program instructions call out these registers as R0 through

    R7.

    The location whichstack pointer refers

    9

  • 7/31/2019 First Present 80C51

    10/24Innostor Technology Corporation

    Data Memory

    Figure 9 gives a brieflook at the SpecialFunction Register (SFR)space.

    include the Port latches,timers, peripheral controls

    etc.

    can only be accessed by

    direct addressing.

    DPTR: DPH + DPLSP: Stack Pointer

    IE: Interrupter Enable register

    IP: Interrupt Priority Register

    10

  • 7/31/2019 First Present 80C51

    11/24Innostor Technology Corporation

    Program Status Word

    Program Status Word (PSW) contains several status bits that reflect the current state of the CPU

    11

  • 7/31/2019 First Present 80C51

    12/24Innostor Technology Corporation

    Addressing Modes

    Immediate Constants Ex. MOV A, #30H ;

    Direct Addressing

    the operand is specified by an 8-bit address field in the instruction

    Onlyinternal Data RAM(00H~7FH) and SFRs can be directlyaddressed.

    Ex. MOV A, 3FH ;

    Indirect Addressing

    the instruction specifies a register which contains the address of the

    operand

    Bothinternal and external RAM can be indirectly addressed.

    Ex. MOV R0, #70H ; MOV A, @R0 ;

    12

  • 7/31/2019 First Present 80C51

    13/24Innostor Technology Corporation

    Addressing Modes

    Register Instructions carry a 3-bit to indicate one of 8 registers(R0 ~ R7)

    One of four banks is selected at execution time by the two bank

    select bits in the PSW (RS0 & RS1).

    Ex. MOV A, R7 ;

    Register-Specific Instructions

    Some instructions are specific to a certain register.

    no address byte is needed to point to it. The opcode itself does that.

    Ex. RR A ;

    Indexed Addressing

    Onlyprogram Memory can be accessed with indexed addressing,

    and it can only be read.

    Ex. MOV A, #30H ; MOV DPTR, #300H ; MOVC A, @A+DPTR ;

    13

  • 7/31/2019 First Present 80C51

    14/24Innostor Technology Corporation

    Instructions

    Arithmetic Instructions

    Logical Instructions

    Data Transfers

    Boolean Instructions

    Jump Instructions

    14

  • 7/31/2019 First Present 80C51

    15/24Innostor Technology Corporation

    Arithmetic Instructions

    15

  • 7/31/2019 First Present 80C51

    16/24Innostor Technology Corporation

    Logical Instructions

    16

  • 7/31/2019 First Present 80C51

    17/24Innostor Technology Corporation

    Data Transfer

    17

  • 7/31/2019 First Present 80C51

    18/24Innostor Technology Corporation

    Data Transfer

    To see how XCHand XCHD can be

    used to facilitate

    data manipulations,

    consider first theproblem of shifting

    an 8-digit BCD

    number two digits

    to the right.

    18

  • 7/31/2019 First Present 80C51

    19/24Innostor Technology Corporation

    Data Transfer

    19

  • 7/31/2019 First Present 80C51

    20/24Innostor Technology Corporation

    Boolean Instructions

    20

  • 7/31/2019 First Present 80C51

    21/24

  • 7/31/2019 First Present 80C51

    22/24Innostor Technology Corporation

    Jump Instructions

    22

  • 7/31/2019 First Present 80C51

    23/24Innostor Technology Corporation

    CPU Timing

    CPU Timing

    All 80C51 microcontrollers have an on-chip oscillator which can

    be used if desired as the clock source for the CPU.

    Machine Cycles

    A machine cycle consists of a sequence of 6 states, numberedS1 through S6. Each state time lasts for two oscillator periods.

    Thus a machine cycle takes 12 oscillator periods or 1s if the

    oscillator frequency is 12MHz.

    23

  • 7/31/2019 First Present 80C51

    24/24

    DP80390

    DP80390 is an ultra high performance, speed optimizedsoft core of a single-chip 8-bit embedded controller.

    The DP80390 has a Pipelined RISC architecture.

    It supports up to 8 MB of linear code and 16 MB of linear

    data spaces.

    DP80390 soft core is 100% binary compatible with the

    industry standard 80390 & 8051 8-bit microcontrollers.

    The same C compiler was used for benchmarking of the

    core vs 80C51 with the same settings.