标题:汇编版Hello World 出处:Felix021 时间:Wed, 11 Feb 2009 16:28:49 +0000 作者:felix021 地址:https://www.felix021.com/blog/read.php?1458 内容: 今天回顾汇编,顺手写了一个,居然还可以运行,挖咔咔,自恋一下 datas segment use16 str1 db "hello world!", 0dh, 0ah, "$" datas ends stacks segment use16 db 256 dup(0) stacks ends codes segment use16 assume cs:codes, ds:datas, ss:stacks start: mov ax, datas mov ds, ax lea dx, str1 mov ah, 09h int 21h mov ah, 4ch int 21h codes ends end start Generated by Bo-blog 2.1.0