windows 64使用nasm
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在windows中使用nasm与在Linux中有所不同,主要在于函数的调用方式,nasm在linux中使用系统调用或C库函数时,参数使用寄存器的顺序是rdi,rsi,rdx,rcx,r8,r9,而在windows下,函数参数保存到rcx,rdx,r8,r9。
windows和Linux的系统调用有很多不同,windows的系统调用可以理解为Windows提供给程序员的API,也可以称为系统调用。
在nasm官方网站nasm_Win64下载nasmWin64版本。安装过程软件将安装目录添加到系统环境变量,不需要再次设置。
需要注意的是,如果在nasm汇编中使用了C库函数,这时候就需要使用gcc进行链接。
看下面的例子:
; hello.asm
; nasm -f win64 -o hello.obj hello.asm
; gcc hello.obj -o hello.exe
global main
extern puts
section .text
main:
sub rsp, 20h
mov rcx, message
call puts
add rsp, 20h
ret
message:
db "Hello",0
上面的代码中,使用extern puts声明了该程序需要使用外来的函数puts,在main函数中,将rsp减去20h,是为了开辟栈空间,最后要收回,把字符串的地址加载到寄存器rcx,上面说过,windows 64位调用函数时,参数保存在rcx,rdx,r8,r9。然后使用call指令调用函数puts,最后收回栈空间,然后返回。
编译和链接后,会生成hello.exe程序,在命令行下运行该程序,会打印字符串。
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)