摘要: assume cs:codesgcodesg segment start: ; 设置源地址与目的地址,并使用movsb传送 mov ax, cs mov ds, ax mov si, offset do0 mov ax, 0 mov es, ax mov di, 200h mov c... 阅读全文
posted @ 2014-05-07 22:51 Notflybird 阅读(241) 评论(0) 推荐(0)
摘要: assume cs:codesgdatasg segment db "Beginner's All-purpose Symbolic Instruction Code.",0datasg endscodesg segment start: mov ax, datasg mov ds, ax m... 阅读全文
posted @ 2014-05-07 00:08 Notflybird 阅读(154) 评论(0) 推荐(0)