摘要: 1 ;在屏幕中间分别显示绿色,绿底红色,白底蓝色字符串"welcome to masm!" 2 assume cs:codesg,ds:datasg,ss:stacksg 3 datasg segment 4 db 'welcome to masm!' 5 db 02h,24h,71h 6 datasg ends 7 stacksg segment 8 db 8 dup(0) 9 stacksg ends10 codesg segment11 start: mov ax,datasg12 mov ds,ax13 14 ... 阅读全文
posted @ 2014-03-05 10:37 galoishelley 阅读(2963) 评论(0) 推荐(1) 编辑