WEB在线工具
在线画图
SVG在线工具
AI数据分析
菜鸟教程
AI集合
更多频道
邮箱导航
前端开发
媒体运营
科技网站
云服务器
办公软件
学术搜索
世界时间
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 在线工具
AI 工具
AI 开发环境
Trae
- AI 原生开发环境
Qoder
- AI 编程 IDE
AI 应用开发平台
秒哒
- 一句话生成应用
MonkeyCode
- AI 应用开发平台
Token 节省计划
Coding Plan
- DeepSeek、Kimi、GLM、Doubao
讯飞星辰 MaaS
- 免费模型调用平台
阿里云 Token Plan
- Qwen、GLM、Kimi、MiniMax
复制
清空
下载
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!
textxx
×
xxx