博文

一个非常巧妙的循环 虽然简单但令人回味(2005-06-13 22:32:00)

摘要:data segment lch db ? data ends code segment assume cs:code,ds:data start: mov ax,data mov ds,ax mov ax,0 mov cx,100 aaa:add ax,cx loop aaa mov lch,ax mov ah,4ch int 21h code ends end start ......

阅读全文(2640) | 评论:0

一个恶搞程序  吓唬吓唬你(2005-06-11 09:24:00)

摘要:自己编的 吓唬MM的! data segment lch db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch2 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch3 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch4 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch5 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch6 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch7 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch8 db 'warning:You computer is damaging by a man called Liuchunhe!Please shut down!','    ' lch9 db 'warning:You computer is damaging by a man called Liuchu......

阅读全文(7362) | 评论:0