摘要: 实验一 编辑代码如下: assume cs:code data segment db 'welcome to masm!' data ends code segment start: mov ax,data mov es,ax mov ax,0b800h add ax,110 mov ds,ax m 阅读全文
posted @ 2020-12-18 11:04 三水sanshuiii 阅读(115) 评论(3) 推荐(0) 编辑
摘要: 试验1 使用文本编辑器,编写代码,具体如下: 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, 0b800H 阅读全文
posted @ 2020-11-27 11:59 三水sanshuiii 阅读(118) 评论(3) 推荐(0) 编辑
摘要: 实验任务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 ds:[2],2 mov 阅读全文
posted @ 2020-11-05 23:19 三水sanshuiii 阅读(197) 评论(3) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-18 22:36 三水sanshuiii 阅读(125) 评论(4) 推荐(0) 编辑