Description
FJ has purchased N (1
The treats are interesting for many reasons:
The treats are numbered 1..N and stored sequentially in single file in a long box that is open at both ends. On...
分类:
其他好文 时间:
2014-07-21 22:18:18
阅读次数:
227
疯狂的暑假学习之 汇编入门学习笔记 (九)—— call和ret
参考: 《汇编语言》 王爽 第10章
call和ret都是转移指令。
1. ret和retf
ret指令:用栈中的数据,修改IP内容,从而实现近转移
相当于:
pop ip
retf指令:用栈中的数据,修改CS和IP,从而实现远转移
相当于:
pop ip
pop cs
例子:ret
assume cs:code,ss:stack
stack segment
db 16 dup(1)
stack ends
code seg...
分类:
其他好文 时间:
2014-07-16 10:32:37
阅读次数:
267
疯狂的暑假学习之 汇编入门学习笔记 (五)—— 包含多个段的程序
参考: 《汇编语言》 王爽 第6章
1.在代码中使用数据。
assume cs:code
code segment
dw 0123h,0456h,0789h,0defh
mov ax,0
mov bx,0
mov ax,4c00H
int 21h
code ends
end...
分类:
其他好文 时间:
2014-07-08 18:16:07
阅读次数:
229
1. 输出缓冲区的刷新
我们的程序已经使用过endl 操纵符,用于输出一个换行符并刷新缓冲区。
除此之外,C++语言还提供了另外两个类似的操纵符。第一个经常使用的flush,
用于刷新流,但不在输出中添加任何字符。第二个则是比较少用的ends,这个
操纵符在缓冲区中插入空字符null,然后后刷新它:
cout
cout
cout
2. unitbuf 操纵符
如果...
分类:
编程语言 时间:
2014-07-06 11:53:03
阅读次数:
267
5.1 You are given two 32-bit numbers, N andM, and two bit positions, i and j. Write a method to insert M into Nsuch that M starts at bit j and ends at...
分类:
其他好文 时间:
2014-06-20 13:51:09
阅读次数:
149
Operating Cisco Routerconsider the hardware on
the ends of the serial link, in particular where the channel service unit/data
service unit (CSU/DSU) h...
分类:
其他好文 时间:
2014-06-12 19:10:26
阅读次数:
351
DescriptionThe 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 Ga...
分类:
其他好文 时间:
2014-06-02 09:38:19
阅读次数:
219
Recycled paper bags not only save resources,
but together to avoid further unnecessary material ends up in landfills. Paper
bags have come back from a...
分类:
其他好文 时间:
2014-05-29 09:25:02
阅读次数:
401
IMPORT ,定义表示这是一个外部变量的标号,不是在本程序定义的EXPORT
,表示本程序里面用到的变量提供给其他模块调用的。以上两个在汇编和C语言混合编程的时候用到ENDP 表示PROC所定义的过程结束. (end
procedure)ENDS 表示SEGMENT定义的段结束. (end seg...
分类:
其他好文 时间:
2014-05-29 02:33:03
阅读次数:
330