ー殇ヘ゛主演 发表于 2012-4-6 22:27:11

这个??

assume cs:codesg
codesg segment
    dw 0123h,0456h,0789h,0abch,0defh,0fedh,0cbah,0987h
    dw 0,0,0,0,0,0,0,0
start:
    mov ax,cs   ;cs为所填第一空
    mov ss,ax
    mov sp,32    ;此条指令为所填第二空
    mov ax,0
    mov ds,ax
    mov bx,0
    mov cx,8
如果这个sp改成20就要在后面加上h了吧
页: [1]
查看完整版本: 这个??