摘要: ;ret and call assume cs:code stack segment db 8 dup(0) stack ends code segment mov ax,4c00h int 21h start: mov ax,stack mov ss,ax mov sp,8;stack top p 阅读全文
posted @ 2022-11-26 17:29 Z_Chan 阅读(157) 评论(0) 推荐(0) 编辑
摘要: assume cs:code,ss:stack stack segment db 4 dup(11h);create 4 byte's memory and inject 11*4 stack ends code segment start: mov ax,stack mov ss,ax mov a 阅读全文
posted @ 2022-11-26 17:07 Z_Chan 阅读(42) 评论(0) 推荐(0) 编辑