宫习习
WEB在线工具
在线PS
在线画图
SVG在线工具
搜索引擎
图片&颜色
文字工具
更多频道
AI应用
前端开发
科技网站
云服务器
办公软件
学术搜索
在线测验
财经频道
单位换算
银行机构
媒体运营
体育频道
搜索
点击运行
Groovy 在线工具
Assembly 在线工具
R 在线工具
VB.NET 在线工具
TypeScript 在线工具
Kotlin 在线工具
Pascal 在线工具
Lua 在线工具
Node.js 在线工具
Go 在线工具
Swift 在线工具
RUST 在线工具
Bash 在线工具
Perl 在线工具
Erlang 在线工具
Scala 在线工具
C# 在线工具
Ruby 在线工具
C++ 在线工具
C 在线工具
Java 在线工具
Python3 在线工具
Python2 在线工具
PHP 在线工具
复制
清空
下载
section .data hello: db 'Hello world!',10 ; 'Hello world!' plus a linefeed character helloLen: equ $-hello ; Length of the 'Hello world!' string section .text global _start _start: mov eax,4 ; The system call for write (sys_write) mov ebx,1 ; File descriptor 1 - standard output mov ecx,hello ; Put the offset of hello in ecx mov edx,helloLen ; helloLen is a constant, so we don't need to say ; mov edx,[helloLen] to get it's actual value int 80h ; Call the kernel mov eax,1 ; The system call for exit (sys_exit) mov ebx,0 ; Exit with return "code" of 0 (no error) int 80h;
Hello, world!