1. win 10 环境搭建
https://blog.csdn.net/lanchunhui/article/details/78151569
mount c d:dos
cd debug
debug
2. 常用的调试命令
R -- 寄存器信息
D -- 查看内存内容
E -- 编写内存,以机器码
A -- 编写内存,以汇编
U -- You see. 你看的懂的内容
T -- step by step debug
3. 第一个程序
2^8 在2000:0 地址
d 2000:0 r r CS 2000 r IP 0 a 2000:0 mov AX, 01 add AX, AX jmp 2000:0003 t t t t t