1 / 9

8051 마이크로컨트롤러 제 3 장 . 명령어 집합

8051 마이크로컨트롤러 제 3 장 . 명령어 집합. MCS-51 명령어 유형. 명령어 유형. 산술 명령어 (Arithmetic Instruction) 논리 명령어 (Logical Instruction) 데이터 이동 명령어 (Data transfer Instruction) 부울 변수 명령어 (Boolean variable Instruction) 프로그램 분기 명령어 (program branching Instruction).

ling
Download Presentation

8051 마이크로컨트롤러 제 3 장 . 명령어 집합

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 8051 마이크로컨트롤러 제3장. 명령어 집합 MCS-51 명령어 유형 • 명령어 유형 • 산술 명령어(Arithmetic Instruction) • 논리 명령어(Logical Instruction) • 데이터 이동 명령어(Data transfer Instruction) • 부울 변수 명령어(Boolean variable Instruction) • 프로그램 분기 명령어(program branching Instruction) 명령어유형 -1-청강문화산업대학 이동통신과

  2. 8051 마이크로컨트롤러 제3장. 명령어 집합 산술 명령어(Arithmetic Instruction) • ADD A, <src-byte> : 더하기 - ADD A, Rn : 1바이트, 1사이클, 00101nnn (A) (A) + (Rn) - ADD A, direct : 2바이트, 1사이클, 00100101 aaaaaaaa (A) (A) + (direct) - ADD A, @Ri : 1바이트, 1사이클, 0010011i (A) (A) + ((Ri)) - ADD A, #data : 2바이트, 1사이클, 00100100 dddddddd (A) (A) + #data -2-청강문화산업대학 이동통신과

  3. 8051 마이크로컨트롤러 제3장. 명령어 집합 산술 명령어(Arithmetic Instruction) • ADDC A, <src-byte> : 캐리와 함께 더하기 - ADDC A, Rn : 1byte, 1cycle, (A) (A) + (C) + (Rn) - ADDC A, direct : 2byte, 1cycle, (A) (A) + (C) + (direct) - ADDC A, @Ri : 1byte, 1cycle, (A) (A) + (C) + ((Ri)) - ADDC A, #data : 2byte, 1cycle, (A) (A) + (C) + #data • SUBB A, <src-byte> : 빼기 - SUBB A, Rn : 1byte, 1cycle, (A) (A) - (C) - (Rn) - SUBB A, direct : 2byte, 1cycle, (A) (A) - (C) - (direct) - SUBB A, @Ri : 1byte, 1cycle, (A) (A) - (C) - ((Ri)) - SUBB A, #data : 2byte, 1cycle, (A) (A) - (C) - #data -3-청강문화산업대학 이동통신과

  4. 8051 마이크로컨트롤러 제3장. 명령어 집합 산술 명령어(Arithmetic Instruction) • INC <byte> : 1 증가 - INC A : 1byte, 1cycle, (A) (A) + 1 - INC Rn : 1byte, 1cycle, (Rn) (Rn) + 1 - INC direct : 2byte, 1cycle, (direct) (direct) + 1 - INC @Ri : 1byte, 1cycle, ((Ri)) ((Ri)) + 1 - INC DPTR : 1byte, 1cycle, (DPTR) (DPTR) + 1 • DEC <byte> : 1 감소 - DEC A : 1byte, 1cycle, (A) (A) - 1 - DEC Rn : 1byte, 1cycle, (Rn) (Rn) - 1 - DEC direct : 2byte, 1cycle, (direct) (direct) - 1 - DEC @Ri : 1byte, 1cycle, ((Ri)) ((Ri)) - 1 -4-청강문화산업대학 이동통신과

  5. 8051 마이크로컨트롤러 제3장. 명령어 집합 산술 명령어(Arithmetic Instruction) • MUL AB : 곱하기 - 1byte, 4cycle - (A) Low byte of (A)  (B), (B) High byte of (A)  (B) • DIV AB : 나누기 - 1byte, 4cycle - (A) (A)  (B) 의 몫, (B) (A)  (B) 의 나머지 • DA A : 십진수로 조절 - 1byte, 1cycle, 16진수 결과에 +6을 하면 10진수 결과를 얻음 -5-청강문화산업대학 이동통신과

  6. 8051 마이크로컨트롤러 제3장. 명령어 집합 논리 명령어(Logical Instruction) • ANL <dest-byte>, <src-byte> : 논리적 AND - ANL A, Rn : 1byte, 1cycle, (A) (A) AND (Rn) - ANL A, direct : 2byte, 1cycle, (A) (A) AND (direct) - ANL A, @Ri : 1byte, 1cycle, (A) (A) AND ((Ri)) - ANL A, #data : 2byte, 1cycle, (A) (A) AND #data - ANL direct, A : 2byte, 1cycle, (direct) (direct) AND (A) - ANL direct, #data : 3byte, 2cycle, (direct) (direct) AND #data • CLR A : 지우기 - 1byte, 1cycle, (A) 0 -6-청강문화산업대학 이동통신과

  7. 8051 마이크로컨트롤러 제3장. 명령어 집합 논리 명령어(Logical Instruction) • ORL <dest-byte>, <src-byte> : 논리적 OR - ORL A, Rn : 1byte, 1cycle, (A) (A) OR (Rn) - ORL A, direct : 2byte, 1cycle, (A) (A) OR (direct) - ORL A, @Ri : 1byte, 1cycle, (A) (A) OR ((Ri)) - ORL A, #data : 2byte, 1cycle, (A) (A) OR #data - ORL direct, A : 2byte, 1cycle, (direct) (direct) OR (A) - ORL direct, #data : 3byte, 2cycle, (direct) (direct) OR #data • CPL A : 보수 - 1byte, 1cycle, (A) NOT (A) -7-청강문화산업대학 이동통신과

  8. 8051 마이크로컨트롤러 제3장. 명령어 집합 논리 명령어(Logical Instruction) • XRL <dest-byte>, <src-byte> : 논리적 XOR - XRL A, Rn : 1byte, 1cycle, (A) (A) XOR (Rn) - XRL A, direct : 2byte, 1cycle, (A) (A) XOR (direct) - XRL A, @Ri : 1byte, 1cycle, (A) (A) XOR ((Ri)) - XRL A, #data : 2byte, 1cycle, (A) (A) XOR #data - XRL direct, A : 2byte, 1cycle, (direct) (direct) XOR (A) - XRL direct, #data : 3byte, 2cycle, (direct) (direct) XOR #data • SWAP A : Nibble 교체 - 1byte, 1cycle, (A3 ~ A0) (A7 ~ A4) -8-청강문화산업대학 이동통신과

  9. 8051 마이크로컨트롤러 제3장. 명령어 집합 논리 명령어(Logical Instruction) • RL ARLC A RR ARRC A -9-청강문화산업대학 이동통신과

More Related