摘要: assume cs:code stack segment db 128 dup(0) ; 定义栈段,大小128字节 stack ends code segment start: ;设置各段地址 mov ax,stack mov ss,ax mov sp,128 ; 栈顶指向栈段末尾(128字节栈,s 阅读全文
posted @ 2025-12-11 21:31 chenlight 阅读(1) 评论(0) 推荐(0)