阅读背景:

AT&A汇编helloworld

来源:互联网 

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl 
          

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl $1,%ebx #参数一 文件描写符 stdout
      movl $4,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count);
      int $0x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。
      
      #退出程序
      movl $0,%ebx #参数一:退出代码
      movl $1,%eax #体系调用号:sys_exit
      int $0x80#调用内核功效
      [root@localhost as]# as -o hello.o hello.s
[root@localhost as]# ld -s -o hello hello.o
[root@localhost as]# ./hello
Hello,world!
[root@localhost as]#
[root@localhost as]# 



总结:

eax是一个累加存放器,中止信号只能放到这个存放器里面。

ebx ecx edx 这几个存放器要依照顺序放参数,也就是参数的顺序要与存放器的顺序一致。



,%ebx #参数一 文件描写符 stdout movl ,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count); int

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl $1,%ebx #参数一 文件描写符 stdout
      movl $4,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count);
      int $0x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。
      
      #退出程序
      movl $0,%ebx #参数一:退出代码
      movl $1,%eax #体系调用号:sys_exit
      int $0x80#调用内核功效
      [root@localhost as]# as -o hello.o hello.s
[root@localhost as]# ld -s -o hello hello.o
[root@localhost as]# ./hello
Hello,world!
[root@localhost as]#
[root@localhost as]# 



总结:

eax是一个累加存放器,中止信号只能放到这个存放器里面。

ebx ecx edx 这几个存放器要依照顺序放参数,也就是参数的顺序要与存放器的顺序一致。



x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。 #退出程序 movl

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl $1,%ebx #参数一 文件描写符 stdout
      movl $4,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count);
      int $0x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。
      
      #退出程序
      movl $0,%ebx #参数一:退出代码
      movl $1,%eax #体系调用号:sys_exit
      int $0x80#调用内核功效
      [root@localhost as]# as -o hello.o hello.s
[root@localhost as]# ld -s -o hello hello.o
[root@localhost as]# ./hello
Hello,world!
[root@localhost as]#
[root@localhost as]# 



总结:

eax是一个累加存放器,中止信号只能放到这个存放器里面。

ebx ecx edx 这几个存放器要依照顺序放参数,也就是参数的顺序要与存放器的顺序一致。



,%ebx #参数一:退出代码 movl

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl $1,%ebx #参数一 文件描写符 stdout
      movl $4,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count);
      int $0x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。
      
      #退出程序
      movl $0,%ebx #参数一:退出代码
      movl $1,%eax #体系调用号:sys_exit
      int $0x80#调用内核功效
      [root@localhost as]# as -o hello.o hello.s
[root@localhost as]# ld -s -o hello hello.o
[root@localhost as]# ./hello
Hello,world!
[root@localhost as]#
[root@localhost as]# 



总结:

eax是一个累加存放器,中止信号只能放到这个存放器里面。

ebx ecx edx 这几个存放器要依照顺序放参数,也就是参数的顺序要与存放器的顺序一致。



,%eax #体系调用号:sys_exit int

代码:

[root@localhost as]# cat hello.s
#hello.s
.data #数据段声明
      msg: .string "Hello,world!\n"#要输出的字符串
      len=. -msg #字串长度
.text #代码段声明
.global _start #指定入口函数

_start:
      movl $len,%edx #参数三 字符长度
      movl $msg,%ecx #参数二 字符串指针
      movl $1,%ebx #参数一 文件描写符 stdout
      movl $4,%eax #体系调用号 sys_write ssize_t write(int fd, const void* buf, size_t count);
      int $0x80 #调用内核功效 是一条AT&T语法的中止指令,用于Linux的体系调用。
      
      #退出程序
      movl $0,%ebx #参数一:退出代码
      movl $1,%eax #体系调用号:sys_exit
      int $0x80#调用内核功效
      [root@localhost as]# as -o hello.o hello.s
[root@localhost as]# ld -s -o hello hello.o
[root@localhost as]# ./hello
Hello,world!
[root@localhost as]#
[root@localhost as]# 



总结:

eax是一个累加存放器,中止信号只能放到这个存放器里面。

ebx ecx edx 这几个存放器要依照顺序放参数,也就是参数的顺序要与存放器的顺序一致。



x80#调用内核功效 [root@localhost as]# as -o hello.o hello.s [root@localhost as]# ld -s -o hello hello.o [root@localhost as]# ./hello Hello,world! [root@localhost as]# [root@localhost as]# [root@localhost as]# cat hello.s #hello.s .da




你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: