当前位置:   article > 正文

write函数_xv6 中的write函数在c语言运行库中吗

xv6 中的write函数在c语言运行库中吗

cdecl

(1)调用者将所有参数从右向左入栈。
(2)调用者清理参数所占的栈空间。

当输入的参数小于等于5个时

传入参数的顺序:
1.ebx存储第一个参数
2.ecx存储第二个参数
3.edx存储第三个参数
4.esi存储第四个参数
5.edi存储第五个参数

section .data
str_c_lib: db "c library says : hello world!",0xa ;0xa为LF ascll码
str_c_lib_len equ $-str_c_lib

str_syscall:db "syscall says :hello wrold",0xa  
str_syscall_len equ $-str_syscall

section .text
global _start
_start:
    ;模拟c语言中系统调用库函数write
    ;方式1
    push str_c_lib_len
    push str_c_lib
    push 1
    call simu_write
    add esp,12
    ;方式2 跨过库函数,直接进行系统调用
    mov eax,4
    mov ebx,1
    mov ecx,str_syscall
    mov edx,str_syscall_len
    int 0x80
    ;退出程序
    mov eax,1        ; 第一号功能是exit
    int 0x80

;
simu_write:
    push ebp  
    mov ebp,esp
    mov eax,4
    mov ebx,[ebp+8]    ; 第一个参数
    mov ecx,[ebp+12]   ; 第二个参数
    mov edx,[ebp+16]   ; 第三个参数
    int 0x80
    pop ebp
    ret



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41

可能出现的问题

链接的时候可能出现的问题
ld: i386 architecture of input file `foo.o’ is incompatible with i386:x86-64 output

-m elf_i386
链接的时候加入-m elf_i386

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/256358
推荐阅读
相关标签
  

闽ICP备14008679号