TINYC写个8052虚拟机(2) Intel MCS-805x指令表.

本文全面介绍了信息技术领域的各个方面,包括前端开发、后端开发、移动开发、游戏开发、大数据开发、开发工具、嵌入式硬件、嵌入式电路知识、嵌入式开发环境、音视频基础、音视频直播流媒体、图像处理AR特效、AI音视频处理、测试、基础运维、DevOps、操作系统、云计算厂商、自然语言处理、区块链、隐私计算、文档协作与知识管理、版本控制、项目管理与协作工具、有监督学习、无监督学习、半监督学习、强化学习、数据安全、数据挖掘、数据结构、算法、非IT技术、自动推理、人工神经网络与计算、自动驾驶、数据分析、数据工程等,为读者提供了一个全面的技术概览。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#define iPush(x, o1, o2, o3, c, n) \
  {x, o1, o2, o3, c, #n,  OPC_##n}

const iCode iCodeSet[] = {
  iPush(1, OP_NONE,    OP_NONE,    OP_NONE,    12,  NOP),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(3, OP_CODE16,  OP_NONE,    OP_NONE,    24,  LJMP),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  RR),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  INC),
  iPush(2, OP_RAM8,    OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_RAM_R0,  OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_RAM_R1,  OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R0,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R1,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R2,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R3,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R4,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R5,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R6,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(1, OP_R7,      OP_NONE,    OP_NONE,    12,  INC),
  iPush(3, OP_BIT,     OP_CODE,    OP_NONE,    24,  JBC),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(3, OP_CODE16,  OP_NONE,    OP_NONE,    24,  LCALL),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  RRC),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  DEC),
  iPush(2, OP_RAM8,    OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_RAM_R0,  OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_RAM_R1,  OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R0,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R1,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R2,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R3,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R4,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R5,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R6,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(1, OP_R7,      OP_NONE,    OP_NONE,    12,  DEC),
  iPush(3, OP_BIT,     OP_CODE,    OP_NONE,    24,  JB),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(1, OP_NONE,    OP_NONE,    OP_NONE,    24,  RET),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  RL),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  ADD),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  ADD),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  ADD),
  iPush(3, OP_BIT,     OP_CODE,    OP_NONE,    24,  JNB),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(1, OP_NONE,    OP_NONE,    OP_NONE,    24,  RETI),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  RLC),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  ADDC),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  ADDC),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  ADDC),
  iPush(2, OP_CODE,    OP_NONE,    OP_NONE,    24,  JC),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(2, OP_RAM8,    OP_ACC,     OP_NONE,    12,  ORL),
  iPush(3, OP_RAM8,    OP_IMM8,    OP_NONE,    24,  ORL),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  ORL),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  ORL),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  ORL),
  iPush(2, OP_CODE,    OP_NONE,    OP_NONE,    24,  JNC),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(2, OP_RAM8,    OP_ACC,     OP_NONE,    12,  ANL),
  iPush(3, OP_RAM8,    OP_IMM8,    OP_NONE,    24,  ANL),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  ANL),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  ANL),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  ANL),
  iPush(2, OP_CODE,    OP_NONE,    OP_NONE,    24,  JZ),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(2, OP_RAM8,    OP_ACC,     OP_NONE,    12,  XRL),
  iPush(3, OP_RAM8,    OP_IMM8,    OP_NONE,    24,  XRL),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  XRL),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  XRL),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  XRL),
  iPush(2, OP_CODE,    OP_NONE,    OP_NONE,    24,  JNZ),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(2, OP_FC,      OP_BIT,     OP_NONE,    24,  ORL),
  iPush(1, OP_NONE,    OP_NONE,    OP_NONE,    24,  JMP),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(3, OP_RAM8,    OP_IMM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_RAM_R0,  OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_RAM_R1,  OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R0,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R1,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R2,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R3,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R4,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R5,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R6,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_R7,      OP_IMM8,    OP_NONE,    12,  MOV),
  iPush(2, OP_CODE,    OP_NONE,    OP_NONE,    24,  SJMP),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(2, OP_FC,      OP_BIT,     OP_NONE,    24,  ANL),
  iPush(1, OP_ACC,     OP_RAM_ACC, OP_PC,      24,  MOVC),
  iPush(1, OP_ACC,     OP_B,       OP_NONE,    48,  DIV),
  iPush(3, OP_RAM8,    OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_RAM_R0,  OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_RAM_R1,  OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R0,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R1,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R2,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R3,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R4,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R5,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R6,      OP_NONE,    24,  MOV),
  iPush(2, OP_RAM8,    OP_R7,      OP_NONE,    24,  MOV),
  iPush(3, OP_DPTR,    OP_IMM16,   OP_NONE,    24,  MOV),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(2, OP_BIT,     OP_FC,      OP_NONE,    24,  MOV),
  iPush(1, OP_ACC,     OP_RAM_ACC, OP_DPTR,    24,  MOVC),
  iPush(2, OP_ACC,     OP_IMM8,    OP_NONE,    12,  SUBB),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  SUBB),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  SUBB),
  iPush(2, OP_FC,      OP_BIT,     OP_NONE,    24,  ORL),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(2, OP_FC,      OP_BIT,     OP_NONE,    12,  MOV),
  iPush(1, OP_DPTR,    OP_NONE,    OP_NONE,    24,  INC),
  iPush(1, OP_ACC,     OP_B,       OP_NONE,    48,  MUL),
  iPush(0, 0,          0,          0,          0,   NOP),
  iPush(2, OP_RAM_R0,  OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_RAM_R1,  OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R0,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R1,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R2,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R3,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R4,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R5,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R6,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_R7,      OP_RAM8,    OP_NONE,    24,  MOV),
  iPush(2, OP_FC,      OP_BIT,     OP_NONE,    24,  ANL),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(2, OP_BIT,     OP_NONE,    OP_NONE,    12,  CPL),
  iPush(1, OP_FC,      OP_NONE,    OP_NONE,    12,  CPL),
  iPush(3, OP_ACC,     OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_ACC,     OP_RAM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_RAM_R0,  OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_RAM_R1,  OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R0,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R1,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R2,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R3,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R4,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R5,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R6,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(3, OP_R7,      OP_IMM8,    OP_CODE,    24,  CJNE),
  iPush(2, OP_RAM8,    OP_NONE,    OP_NONE,    24,  PUSH),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(2, OP_BIT,     OP_NONE,    OP_NONE,    12,  CLR),
  iPush(1, OP_FC,      OP_NONE,    OP_NONE,    12,  CLR),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  SWAP),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  XCH),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  XCH),
  iPush(2, OP_RAM8,    OP_NONE,    OP_NONE,    24,  POP),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(2, OP_BIT,     OP_NONE,    OP_NONE,    12,  SETB),
  iPush(1, OP_FC,      OP_NONE,    OP_NONE,    12,  SETB),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  DA),
  iPush(3, OP_RAM8,    OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  XCHD),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  XCHD),
  iPush(2, OP_R0,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R1,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R2,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R3,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R4,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R5,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R6,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(2, OP_R7,      OP_CODE,    OP_NONE,    24,  DJNZ),
  iPush(1, OP_ACC,     OP_RAM_DPTR,OP_NONE,    24,  MOVX),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  AJMP),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    24,  MOVX),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    24,  MOVX),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  CLR),
  iPush(2, OP_ACC,     OP_RAM8,    OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_RAM_R0,  OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_RAM_R1,  OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R0,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R1,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R2,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R3,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R4,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R5,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R6,      OP_NONE,    12,  MOV),
  iPush(1, OP_ACC,     OP_R7,      OP_NONE,    12,  MOV),
  iPush(1, OP_RAM_DPTR,OP_ACC,     OP_NONE,    24,  MOVX),
  iPush(2, OP_CODE11,  OP_NONE,    OP_NONE,    24,  ACALL),
  iPush(1, OP_RAM_R0,  OP_ACC,     OP_NONE,    24,  MOVX),
  iPush(1, OP_RAM_R1,  OP_ACC,     OP_NONE,    24,  MOVX),
  iPush(1, OP_ACC,     OP_NONE,    OP_NONE,    12,  CPL),
  iPush(2, OP_RAM8,    OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_RAM_R0,  OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_RAM_R1,  OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R0,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R1,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R2,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R3,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R4,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R5,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R6,      OP_ACC,     OP_NONE,    12,  MOV),
  iPush(1, OP_R7,      OP_ACC,     OP_NONE,    12,  MOV)
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值