mov指令

#movtest1.s -An sample of moving data from memory to a register
.section .data
  value:
    .int 1
.section .text
.global main
main:
  movl value,$ecx
  movl $1,$eax
  movl $0,$ebx
  int $0x80

posted @ 2023-04-02 09:24  Carltmf  阅读(42)  评论(0编辑  收藏  举报