Giter Site home page Giter Site logo

8051-course's Introduction

8051 Course

Software:

List:

Addressing Mode:

  • Immediate: MOV A,#20h
  • Register: MOV A,R0
  • Direct: MOV A,30h
  • Indirect: MOV A,@R0
  • External Data Indirect: MOVX A,@DPTR
  • Code Indirect: MOVC A,@A+DPTR

Data Sheet:

Others:

Example:

Sublime Text Highlight Syntax:

Pin Configurations:

  • Pin Configurations
  • Vcc, GND: supply voltage (5V), ground
  • XTAL1, XTAL2: crystal connections for system clock
  • RST: reset input
  • EA: External Access, EA=5V to enable internal ROM.
  • P0.0~P0.7: Port 0, bidirectional bit-addressable with open drain
  • P1.0~P1.7: Port 1, bidirectional bit-addressable with internal pullups
  • P2.0~P2.7: Port 2, bidirectional bit-addressable with internal pullups
  • P3.0~P3.7: Port 3, bidirectional bit-addressable with internal pullups
  • Alternative Functions of Port 3
  • PSEN: Program Store Enable, read strobe for external program memory
  • ALE: Address Latch Enable, for multiplexing AD0~AD7
  • A8A15(P2.0P2.7): high-byte address bus for external addressing
  • AD0AD7(P0.0P0.7): multiplexed low-byte address bus and data bus for external addressing

Registers:

The only register on an 8051 that is not memory-mapped is the 16-bit program counter PC. This specifies the address of the next instruction to execute. Relative branch instructions supply an 8-bit signed offset which is added to the PC.

The following registers are memory-mapped into the special function register space:

  • (0x81) Stack pointer SP. This is an 8-bit register used by subroutine call and return instructions. The stack grows upward; the SP is incremented before pushing, and decremented after popping a value.
  • (0x82–83) Data pointer DP. This is a 16-bit register that is used for accessing PMEM and XRAM.
  • (0xD0) Program status word PSW. This contains important status flags:
    • PSW.0: P Parity. Gives the parity (modulo-2 sum of the bits of) the most recent ALU result.
    • PSW.1: UD User Defined. For general software use, not otherwise used by hardware.
    • PSW.2: OV Overflow flag. Set when addition produces a signed overflow.
    • PSW.3: RS0 Register select 0. The low-order bit of the register bank. Set when banks at 0x08 or 0x18 are in use.
    • PSW.4: RS1 Register select 1. The high-order bit of the register bank. Set when banks at 0x10 or 0x18 are in use.
    • PSW.5: F0 Flag 0. For general software use, not otherwise used by hardware.
    • PSW.6: AC auxiliary carry. Set when addition produces a carry from bit 3 to bit 4.
    • PSW.7: C Carry bit.
  • (0xE0) Accumulator A. This register is used by most instructions.
  • (0xF0) B register. This is used as an extension to the accumulator for multiply and divide instructions.

In addition, there are 8 general purpose registers R0–R7, mapped to IRAM between 0x00 and 0x1F. Only 8 bytes of that range are used at any given time, determined by the bank select bits in the PSW.

256 single bits are directly addressable. These are the 16 IRAM locations from 0x20–0x2F, and the 16 special function registers 0x80, 0x88, 0x90, …, 0xF8.

Note that the PSW does not contain the common N (negative) and Z (zero) flags. Instead, because the accumulator is a bit-addressible SFR, it is possible to branch on individual bits of it, including the msbit. There is also an instruction to jump if the accumulator is zero or non-zero.

Instruction set:

Instructions are all 1 to 3 bytes long, consisting of an initial opcode byte, followed by up to 2 bytes of operands.

There are 16 basic ALU instructions that operate between the accumulator and a second operand, specified using one of the following addressing modes:

Register direct, R0–R7 (opcodes x8–xF)
Register indirect, @R0 or @R1 (opcodes x6 and x7)
Memory direct, specifying an IRAM or SFR location (opcodes x5, followed by 1 byte of address)
Immediate, specifying an 8-bit constant (opcodes x4, followed by 1 byte of data)
The instructions are as follows. Not all support all addressing modes; the immediate mode in particular is sometimes nonsensical:

    1. INC operand: Increment the specified operand. Opcode 04 specifies "INC A"
    1. DEC operand: Decrement the specified operand. Opcode 14 specifies "DEC A"
    1. ADD A,operand: Add the operand to the accumulator A.
    1. ADDC A,operand: Add the operand, plus the C bit, to the accumulator.
    1. ORL A,operand: Logical OR the operand into the A register.
    1. ANL A,operand: Logical AND the operand into the A register.
    1. XRL A,operand: Logical exclusive-OR the operand into the A register.
    1. MOV operand,#data: Move immediate data to the operand. Opcode 74 specifies "MOV A,#data.
    1. MOV address,operand: Move data to an IRAM or SFR register.
    1. SUBB A,operand: Subtract the operand from the accumulator, with borrow. Note there is no subtract without borrow.
  • A. MOV operand,address: Move data from an IRAM or SFR register. Opcodes A4 and A5 are not used.
  • B. CJNE operand,#data,offset: Compare operand to the immediate data, and branch to PC+address if not equal. Opcodes B4 and B5 perform CJNE A,operand,offset, for memory direct and immediate operands. Note there is no "compare and jump if equal" instruction.
  • C. XCH A,operand: Exchange (swap) the accumulator and the operand. Opcode C4 is not used.
  • D. DJNZ operand,offset: Decrement the operand, and branch to PC+offset if the result is non-zero. Opcodes D4, D6, and D7 are not used.
  • E. MOV A,operand: Move operand to the accumulator. Opcode E4 is not used. (Use opcode 74 instead.)
  • F. MOV operand,A: Move accumulator to the operand. Opcode F4 is not used.

Only the ADD, ADDC and SUBB instructions set PSW flags. The INC, DEC, and logical instructions do not. The CJNE instructions modify the C bit only, to the borrow that results from operand1−operand2.

The 32 opcodes 0x00–0x3F, plus the few opcodes not used in the above range, are used for other instructions with more limited operand-specification capabilities.

One of the reasons for the 8051's popularity is its range of operations on single bits. Bits are always specified by absolute addresses; there is no register-indirect or indexed addressing. Instructions that operate on single bits are:

  • SETB bit, CLR bit, CPL bit: Set, clear, or complement the specified bit
  • JB bit,offset: Jump if bit set
  • JNB bit,offset: Jump if bit clear
  • JBC bit,offset: Jump if bit set, and clear bit
  • MOV C,bit, MOV bit,C: Move the specified bit to the carry bit, or vice-versa
  • ORL C,bit, ORL C,/bit: OR the bit (or its complement) to the carry bit
  • ANL C,bit, ANL C,/bit: AND the bit (or its complement) to the carry bit
  • XRL C,bit, XRL C,/bit: Exclusive-OR the bit (or its complement) to the carry bit

Although most instructions require that one operand is the accumulator or an immediate constant, it is possible to perform a MOV directly between two internal RAM locations.

Keynote:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.