四.实验结论 练习一: (1)编写汇编程序: assume cs:codecode segment mov ah,2 mov dl,6 add al,30h int 21h mov ah,2 mov dl,5 add dl,30 int 21h mov ah,4ch int 21hcode ends ...
分类:
其他好文 时间:
2018-11-18 21:08:44
阅读次数:
156
1、首先我们写一段简单的汇编语言源程序 assume cs:code code segment mov ax,0123h mov bx,0456h add ax,bx add ax,ax mov ax,4c00h int21h code ends end 那么该程序中出现了什么呢 (1)伪指令 1) ...
分类:
编程语言 时间:
2018-11-17 16:16:04
阅读次数:
216
Description The police office in Tadu City decides to say ends to the chaos, as launch actions to root up the TWO gangs in the city, Gang Dragon and G ...
分类:
其他好文 时间:
2018-11-14 16:37:31
阅读次数:
165
4.1 一个源程序从写出到执行的过程:1编写汇编源程序 2对源程序进行编译连接 3执行可执行文件中的程序。 4.2 (1)伪指令:没有对应的机器码的指令,最终不被CPU所执行。 segment和ends是一对成对使用的伪指令。 格式为:段名 segment ............ 段名 ends ...
分类:
编程语言 时间:
2018-11-13 02:26:58
阅读次数:
163
assume cs:code,ds:data data segment db 'Beginners All-purpose Symbolic Instruction Code.',0 data ends code segment begin: mov ax,data mov ds,ax mov si... ...
分类:
其他好文 时间:
2018-11-12 13:53:59
阅读次数:
713
Description Let's call the following process a transformation of a sequence of length nn . If the sequence is empty, the process ends. Otherwise, appe ...
分类:
其他好文 时间:
2018-10-07 22:31:52
阅读次数:
188
Vim 基本操作 vim的模式 编辑 移动光标 复制 删除 查找 / : 查找 n 查找下一个 N 查找上一个 ? : 查找 n 查找下一个 N 查找上一个 替换 :start , ends/old/new/ : 从start到end的每一行的第一个old替换成new :start , ends/o ...
分类:
系统相关 时间:
2018-10-01 23:46:33
阅读次数:
231
There is a robot starting at position (0, 0), the origin, on a 2D plane. Given a sequence of its moves, judge if this robot ends up at (0, 0) after it ...
分类:
其他好文 时间:
2018-10-01 11:53:24
阅读次数:
207
captlze 首字母大写 upper() 全大写 lower() 全小写 find 通过元素找索引,找不到-1 index()通过元素找索引,找不到报错 swpease 大小写翻转 repalce(old,new,count)替换 isdigit() 返回bool值 startswith ends ...
分类:
编程语言 时间:
2018-09-13 16:19:29
阅读次数:
205
来源poj3160 After retirement as contestant from WHU ACM Team, flymouse volunteered to do the odds and ends such as cleaning out the computer lab for tra ...
分类:
其他好文 时间:
2018-08-10 13:10:51
阅读次数:
167