第(3)小题下面的程序的功能是将“mov ax,4c00h”之前的指令复制到内存0:200处,补全程序。上机调试,跟踪运行结果。assume cs:codecode segment mov ax, cs ;cs为程序入口的段地址,我们就是要从这里开始复制 mov ds,ax mov ax,00...
分类:
编程语言 时间:
2015-02-08 19:22:24
阅读次数:
291
预先在E:\masm5.0\MYDOC目录下写好hello.asm文件:DATA SEGMENT BUF DB 'HELLO WORLD! THIS IS MY FIRST ASM FILE! $'DATA ENDSCODE SEGMENT ASSUME CS:CODE,DS:DATA...
分类:
其他好文 时间:
2015-02-05 13:18:37
阅读次数:
132
Segment set
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3599 Accepted Submission(s): 1346
Problem Description
A segment and all ...
分类:
其他好文 时间:
2015-02-03 23:08:15
阅读次数:
260
oracle空表处理:1.动态生成给空表分配segment的命令:SQL>Select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;2.在命令窗口右键‘标记’,复制生成的命令并执行...
分类:
数据库 时间:
2015-02-03 21:09:08
阅读次数:
182
题目大意:给定一个平面,多次插入一条线段,以及询问某个x值能截到的最大纵坐标
OTZ
一份详细的网址:http://hi.baidu.com/wyl8899/item/2deafd3a376ef2d46d15e998
注意细节
#include
#include
#include
#include
#include
#define M 100100
#define EPS 1e-...
分类:
其他好文 时间:
2015-02-03 13:13:42
阅读次数:
134
segment descriptors 构建保护模式下的最基本、最根本的执行环境。system descriptors 则构建保护模式下的核心组件:1、TSS descriptor 提供硬件级的进程切换机制 2、LDT descriptor 供进程使用多个 descriptor 3、Gate des...
分类:
其他好文 时间:
2015-02-02 17:55:23
阅读次数:
197
1、gate descriptor 的 selector 给出目标代码的 code segment descriptor2、由目标代码 code segment descriptor 的 base address 得出代码的 base3、这个 base 加上 gate descriptor 的 of...
分类:
其他好文 时间:
2015-02-02 17:54:37
阅读次数:
155
操作系统必须至少建立一个TSS,4个权限级别的堆栈结构(stack segment selector及stack pointer)必须被定义。一、 堆栈及栈指针的权限级别:★ 3 级:stack selector及stack pointer存储在SS寄存器及 ESP 寄存器中★ 0、1及2级:相应的...
分类:
其他好文 时间:
2015-02-02 17:37:33
阅读次数:
225
【转载】[完整]Automatic Audio Segmentation: Segment Boundary and Structure Detection in Popular Music
分类:
其他好文 时间:
2015-02-02 17:24:32
阅读次数:
299
■ 数据访问时的权限check 一、 访问data segment时(ds、es、fs 及gs)1、 程序指令要访问数据时,data segment selector 被加载进 data segment register(ds、es、fs 和 gs)前,处理器会进行一系列的权限检查,通过了才能被加载...
分类:
其他好文 时间:
2015-02-02 17:22:58
阅读次数:
138