摘要: 实验任务1 assume cs:code, ds:data data segment x dw 1020h, 2240h, 9522h, 5060h, 3359h, 6652h, 2530h, 7031h y dw 3210h, 5510h, 6066h, 5121h, 8801h, 6210h, 阅读全文
posted @ 2021-12-11 16:38 uncle_drew7 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: assume cs:code, ds:data data segment x db 1, 9, 3 len1 equ $ - x y dw 1, 9, 3 len2 equ $ - y data ends code segment start: mov ax, data mov ds, 阅读全文
posted @ 2021-11-28 10:52 uncle_drew7 阅读(56) 评论(3) 推荐(0) 编辑
摘要: 1. 实验任务1 任务1-1 对程序task1_1.asm进行汇编、连接,用debug加载、跟踪调试,基于结果,回答问题。 assume ds:data, cs:code, ss:stack data segment db 16 dup(0) data ends stack segment db 1 阅读全文
posted @ 2021-11-06 17:40 uncle_drew7 阅读(38) 评论(3) 推荐(0) 编辑
摘要: 实验任务2 在debug中,使用d命令查看生产日期 可以看到生产日期是最后一行的01/01/92 使用e命令修改生产时期所在的内存单元,修改后,再次使用d命令查看 可以发现生产日期并没有没修改成功,这是因为这是ROM只读存储器,只可读,不可改。 试验任务3 在debug中,使用e命令,向内存单元填写 阅读全文
posted @ 2021-10-24 00:32 uncle_drew7 阅读(66) 评论(3) 推荐(0) 编辑