11 2020 档案

摘要:四、实验结论 实验任务1 源代码文件task1.asm assume cs:code, ds:data data segment db 'Nuist' db 5 dup(2) data ends code segment start: mov ax, data mov ds, ax mov ax, 阅读全文
posted @ 2020-11-26 23:44 Ranye123 阅读(89) 评论(2) 推荐(0)
摘要:实验结论 1. 实验任务1 ex1.asm源代码如下: ;ex1.asm assume cs:code code segment mov ax, 0b810h mov ds, ax mov byte ptr ds:[0], 1 mov byte ptr ds:[1], 1 mov byte ptr 阅读全文
posted @ 2020-11-03 09:24 Ranye123 阅读(160) 评论(3) 推荐(0)