diff --git a/LAB1/LAB1 Readme.txt b/LAB1/LAB1 Readme.txt index 74c636c..f77e4e4 100644 --- a/LAB1/LAB1 Readme.txt +++ b/LAB1/LAB1 Readme.txt @@ -1,14 +1,14 @@ -LAB1是《计算机系统》课程第一次实验 - -实验概述: -——本次实验以安装和熟悉实验环境为主,主要涉及Linux系统安装和x86 Debug工具的简单使用。 - -实验要求: -——要求按“预备实验1”示例文档所描述,成功安装Linux系统和进行基本程序的编译和GDB调试; -——“预备实验2”所有科目为可选项,即“基本要求”和“较高要求”,完成后可酌情加分; - -备注: -——LAB1压缩包为第一次课程实验资料,请自行下载、完成并按期提交实验报告; -——请大家一定养成读文档的习惯,并且随时记录实验过程、问题及解决办法,便于撰写实验报告; -——本次实验有两个目录,分别为“预备实验1”(必做),“预备实验2”(选做); +LAB1是《计算机系统》课程第一次实验 + +实验概述: +——本次实验以安装和熟悉实验环境为主,主要涉及Linux系统安装和x86 Debug工具的简单使用。 + +实验要求: +——要求按“预备实验1”示例文档所描述,成功安装Linux系统和进行基本程序的编译和GDB调试; +——“预备实验2”所有科目为可选项,即“基本要求”和“较高要求”,完成后可酌情加分; + +备注: +——LAB1压缩包为第一次课程实验资料,请自行下载、完成并按期提交实验报告; +——请大家一定养成读文档的习惯,并且随时记录实验过程、问题及解决办法,便于撰写实验报告; +——本次实验有两个目录,分别为“预备实验1”(必做),“预备实验2”(选做); ——目录中提供了“计算机系统实验报告模版”用于实验报告撰写参考; \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086_CPU_姹囩紪鎸囦护閫熸煡鎵嬪唽.txt b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086_CPU_姹囩紪鎸囦护閫熸煡鎵嬪唽.txt index ad78b65..a03c0c2 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086_CPU_姹囩紪鎸囦护閫熸煡鎵嬪唽.txt +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086_CPU_姹囩紪鎸囦护閫熸煡鎵嬪唽.txt @@ -1,188 +1,188 @@ -8086 CPU 汇编指令速查手册 - -一、数据传输指令 -─────────────────────────────────────── - 它们在存贮器和寄存器、寄存器和输入输出端口之间传送数据. - - 1. 通用数据传送指令. - MOV 传送字或字节. - MOVSX 先符号扩展,再传送. - MOVZX 先零扩展,再传送. - PUSH 把字压入堆栈. - POP 把字弹出堆栈. - PUSHA 把AX,CX,DX,BX,SP,BP,SI,DI依次压入堆栈. - POPA 把DI,SI,BP,SP,BX,DX,CX,AX依次弹出堆栈. - PUSHAD 把EAX,ECX,EDX,EBX,ESP,EBP,ESI,EDI依次压入堆栈. - POPAD 把EDI,ESI,EBP,ESP,EBX,EDX,ECX,EAX依次弹出堆栈. - BSWAP 交换32位寄存器里字节的顺序 - XCHG 交换字或字节.( 至少有一个操作数为寄存器,段寄存器不可作为操作数) - CMPXCHG 比较并交换操作数.( 第二个操作数必须为累加器AL/AX/EAX ) - XADD 先交换再累加.( 结果在第一个操作数里 ) - XLAT 字节查表转换. - ── BX 指向一张 256 字节的表的起点, AL 为表的索引值 (0-255,即 - 0-FFH); 返回 AL 为查表结果. ( [BX+AL]->AL ) - - 2. 输入输出端口传送指令. - IN I/O端口输入. ( 语法: IN 累加器, {端口号│DX} ) - OUT I/O端口输出. ( 语法: OUT {端口号│DX},累加器 ) - 输入输出端口由立即方式指定时, 其范围是 0-255; 由寄存器 DX 指定时, - 其范围是 0-65535. - - 3. 目的地址传送指令. - LEA 装入有效地址. - 例: LEA DX,string ;把偏移地址存到DX. - LDS 传送目标指针,把指针内容装入DS. - 例: LDS SI,string ;把段地址:偏移地址存到DS:SI. - LES 传送目标指针,把指针内容装入ES. - 例: LES DI,string ;把段地址:偏移地址存到ES:DI. - LFS 传送目标指针,把指针内容装入FS. - 例: LFS DI,string ;把段地址:偏移地址存到FS:DI. - LGS 传送目标指针,把指针内容装入GS. - 例: LGS DI,string ;把段地址:偏移地址存到GS:DI. - LSS 传送目标指针,把指针内容装入SS. - 例: LSS DI,string ;把段地址:偏移地址存到SS:DI. - - 4. 标志传送指令. - LAHF 标志寄存器传送,把标志装入AH. - SAHF 标志寄存器传送,把AH内容装入标志寄存器. - PUSHF 标志入栈. - POPF 标志出栈. - PUSHD 32位标志入栈. - POPD 32位标志出栈. -二、算术运算指令 -─────────────────────────────────────── - ADD 加法. - ADC 带进位加法. - INC 加 1. - AAA 加法的ASCII码调整. - DAA 加法的十进制调整. - SUB 减法. - SBB 带借位减法. - DEC 减 1. - NEC 求反(以 0 减之). - CMP 比较.(两操作数作减法,仅修改标志位,不回送结果). - AAS 减法的ASCII码调整. - DAS 减法的十进制调整. - MUL 无符号乘法. - IMUL 整数乘法. - 以上两条,结果回送AH和AL(字节运算),或DX和AX(字运算), - AAM 乘法的ASCII码调整. - DIV 无符号除法. - IDIV 整数除法. - 以上两条,结果回送: - 商回送AL,余数回送AH, (字节运算); - 或 商回送AX,余数回送DX, (字运算). - AAD 除法的ASCII码调整. - CBW 字节转换为字. (把AL中字节的符号扩展到AH中去) - CWD 字转换为双字. (把AX中的字的符号扩展到DX中去) - CWDE 字转换为双字. (把AX中的字符号扩展到EAX中去) - CDQ 双字扩展. (把EAX中的字的符号扩展到EDX中去) -三、逻辑运算指令 -─────────────────────────────────────── - AND 与运算. - OR 或运算. - XOR 异或运算. - NOT 取反. - TEST 测试.(两操作数作与运算,仅修改标志位,不回送结果). - SHL 逻辑左移. - SAL 算术左移.(=SHL) - SHR 逻辑右移. - SAR 算术右移.(=SHR) - ROL 循环左移. - ROR 循环右移. - RCL 通过进位的循环左移. - RCR 通过进位的循环右移. - 以上八种移位指令,其移位次数可达255次. - 移位一次时, 可直接用操作码. 如 SHL AX,1. - 移位>1次时, 则由寄存器CL给出移位次数. - 如 MOV CL,04 - SHL AX,CL -四、串指令 -─────────────────────────────────────── -  DS:SI 源串段寄存器 :源串变址. - ES:DI 目标串段寄存器:目标串变址. - CX 重复次数计数器. - AL/AX 扫描值. - D标志 0表示重复操作中SI和DI应自动增量; 1表示应自动减量. - Z标志 用来控制扫描或比较操作的结束. - MOVS 串传送. - ( MOVSB 传送字符. MOVSW 传送字. MOVSD 传送双字. ) - CMPS 串比较. - ( CMPSB 比较字符. CMPSW 比较字. ) - SCAS 串扫描. - 把AL或AX的内容与目标串作比较,比较结果反映在标志位. - LODS 装入串. - 把源串中的元素(字或字节)逐一装入AL或AX中. - ( LODSB 传送字符. LODSW 传送字. LODSD 传送双字. ) - STOS 保存串. - 是LODS的逆过程. - REP 当CX/ECX<>0时重复. - REPE/REPZ 当ZF=1或比较结果相等,且CX/ECX<>0时重复. - REPNE/REPNZ 当ZF=0或比较结果不相等,且CX/ECX<>0时重复. - REPC 当CF=1且CX/ECX<>0时重复. - REPNC 当CF=0且CX/ECX<>0时重复. -五、程序转移指令 -─────────────────────────────────────── - -  1>无条件转移指令 (长转移) - JMP 无条件转移指令 - CALL 过程调用 - RET/RETF过程返回. - - 2>条件转移指令 (短转移,-128到+127的距离内) - ( 当且仅当(SF XOR OF)=1时,OP1循环控制指令(短转移) - LOOP CX不为零时循环. - LOOPE/LOOPZ CX不为零且标志Z=1时循环. - LOOPNE/LOOPNZ CX不为零且标志Z=0时循环. - JCXZ CX为零时转移. - JECXZ ECX为零时转移. - - 4>中断指令 - INT 中断指令 - INTO 溢出中断 - IRET 中断返回 - - 5>处理器控制指令 - HLT 处理器暂停, 直到出现中断或复位信号才继续. - WAIT 当芯片引线TEST为高电平时使CPU进入等待状态. - ESC 转换到外处理器. - LOCK 封锁总线. - NOP 空操作. - STC 置进位标志位. - CLC 清进位标志位. - CMC 进位标志取反. - STD 置方向标志位. - CLD 清方向标志位. - STI 置中断允许位. - CLI 清中断允许位. -六、伪指令 -─────────────────────────────────────── - DW 定义字(2字节). - PROC 定义过程. - ENDP 过程结束. - SEGMENT 定义段. - ASSUME 建立段寄存器寻址. - ENDS 段结束. - END 程序结束. +8086 CPU 汇编指令速查手册 + +一、数据传输指令 +─────────────────────────────────────── + 它们在存贮器和寄存器、寄存器和输入输出端口之间传送数据. + + 1. 通用数据传送指令. + MOV 传送字或字节. + MOVSX 先符号扩展,再传送. + MOVZX 先零扩展,再传送. + PUSH 把字压入堆栈. + POP 把字弹出堆栈. + PUSHA 把AX,CX,DX,BX,SP,BP,SI,DI依次压入堆栈. + POPA 把DI,SI,BP,SP,BX,DX,CX,AX依次弹出堆栈. + PUSHAD 把EAX,ECX,EDX,EBX,ESP,EBP,ESI,EDI依次压入堆栈. + POPAD 把EDI,ESI,EBP,ESP,EBX,EDX,ECX,EAX依次弹出堆栈. + BSWAP 交换32位寄存器里字节的顺序 + XCHG 交换字或字节.( 至少有一个操作数为寄存器,段寄存器不可作为操作数) + CMPXCHG 比较并交换操作数.( 第二个操作数必须为累加器AL/AX/EAX ) + XADD 先交换再累加.( 结果在第一个操作数里 ) + XLAT 字节查表转换. + ── BX 指向一张 256 字节的表的起点, AL 为表的索引值 (0-255,即 + 0-FFH); 返回 AL 为查表结果. ( [BX+AL]->AL ) + + 2. 输入输出端口传送指令. + IN I/O端口输入. ( 语法: IN 累加器, {端口号│DX} ) + OUT I/O端口输出. ( 语法: OUT {端口号│DX},累加器 ) + 输入输出端口由立即方式指定时, 其范围是 0-255; 由寄存器 DX 指定时, + 其范围是 0-65535. + + 3. 目的地址传送指令. + LEA 装入有效地址. + 例: LEA DX,string ;把偏移地址存到DX. + LDS 传送目标指针,把指针内容装入DS. + 例: LDS SI,string ;把段地址:偏移地址存到DS:SI. + LES 传送目标指针,把指针内容装入ES. + 例: LES DI,string ;把段地址:偏移地址存到ES:DI. + LFS 传送目标指针,把指针内容装入FS. + 例: LFS DI,string ;把段地址:偏移地址存到FS:DI. + LGS 传送目标指针,把指针内容装入GS. + 例: LGS DI,string ;把段地址:偏移地址存到GS:DI. + LSS 传送目标指针,把指针内容装入SS. + 例: LSS DI,string ;把段地址:偏移地址存到SS:DI. + + 4. 标志传送指令. + LAHF 标志寄存器传送,把标志装入AH. + SAHF 标志寄存器传送,把AH内容装入标志寄存器. + PUSHF 标志入栈. + POPF 标志出栈. + PUSHD 32位标志入栈. + POPD 32位标志出栈. +二、算术运算指令 +─────────────────────────────────────── + ADD 加法. + ADC 带进位加法. + INC 加 1. + AAA 加法的ASCII码调整. + DAA 加法的十进制调整. + SUB 减法. + SBB 带借位减法. + DEC 减 1. + NEC 求反(以 0 减之). + CMP 比较.(两操作数作减法,仅修改标志位,不回送结果). + AAS 减法的ASCII码调整. + DAS 减法的十进制调整. + MUL 无符号乘法. + IMUL 整数乘法. + 以上两条,结果回送AH和AL(字节运算),或DX和AX(字运算), + AAM 乘法的ASCII码调整. + DIV 无符号除法. + IDIV 整数除法. + 以上两条,结果回送: + 商回送AL,余数回送AH, (字节运算); + 或 商回送AX,余数回送DX, (字运算). + AAD 除法的ASCII码调整. + CBW 字节转换为字. (把AL中字节的符号扩展到AH中去) + CWD 字转换为双字. (把AX中的字的符号扩展到DX中去) + CWDE 字转换为双字. (把AX中的字符号扩展到EAX中去) + CDQ 双字扩展. (把EAX中的字的符号扩展到EDX中去) +三、逻辑运算指令 +─────────────────────────────────────── + AND 与运算. + OR 或运算. + XOR 异或运算. + NOT 取反. + TEST 测试.(两操作数作与运算,仅修改标志位,不回送结果). + SHL 逻辑左移. + SAL 算术左移.(=SHL) + SHR 逻辑右移. + SAR 算术右移.(=SHR) + ROL 循环左移. + ROR 循环右移. + RCL 通过进位的循环左移. + RCR 通过进位的循环右移. + 以上八种移位指令,其移位次数可达255次. + 移位一次时, 可直接用操作码. 如 SHL AX,1. + 移位>1次时, 则由寄存器CL给出移位次数. + 如 MOV CL,04 + SHL AX,CL +四、串指令 +─────────────────────────────────────── +  DS:SI 源串段寄存器 :源串变址. + ES:DI 目标串段寄存器:目标串变址. + CX 重复次数计数器. + AL/AX 扫描值. + D标志 0表示重复操作中SI和DI应自动增量; 1表示应自动减量. + Z标志 用来控制扫描或比较操作的结束. + MOVS 串传送. + ( MOVSB 传送字符. MOVSW 传送字. MOVSD 传送双字. ) + CMPS 串比较. + ( CMPSB 比较字符. CMPSW 比较字. ) + SCAS 串扫描. + 把AL或AX的内容与目标串作比较,比较结果反映在标志位. + LODS 装入串. + 把源串中的元素(字或字节)逐一装入AL或AX中. + ( LODSB 传送字符. LODSW 传送字. LODSD 传送双字. ) + STOS 保存串. + 是LODS的逆过程. + REP 当CX/ECX<>0时重复. + REPE/REPZ 当ZF=1或比较结果相等,且CX/ECX<>0时重复. + REPNE/REPNZ 当ZF=0或比较结果不相等,且CX/ECX<>0时重复. + REPC 当CF=1且CX/ECX<>0时重复. + REPNC 当CF=0且CX/ECX<>0时重复. +五、程序转移指令 +─────────────────────────────────────── + +  1>无条件转移指令 (长转移) + JMP 无条件转移指令 + CALL 过程调用 + RET/RETF过程返回. + + 2>条件转移指令 (短转移,-128到+127的距离内) + ( 当且仅当(SF XOR OF)=1时,OP1循环控制指令(短转移) + LOOP CX不为零时循环. + LOOPE/LOOPZ CX不为零且标志Z=1时循环. + LOOPNE/LOOPNZ CX不为零且标志Z=0时循环. + JCXZ CX为零时转移. + JECXZ ECX为零时转移. + + 4>中断指令 + INT 中断指令 + INTO 溢出中断 + IRET 中断返回 + + 5>处理器控制指令 + HLT 处理器暂停, 直到出现中断或复位信号才继续. + WAIT 当芯片引线TEST为高电平时使CPU进入等待状态. + ESC 转换到外处理器. + LOCK 封锁总线. + NOP 空操作. + STC 置进位标志位. + CLC 清进位标志位. + CMC 进位标志取反. + STD 置方向标志位. + CLD 清方向标志位. + STI 置中断允许位. + CLI 清中断允许位. +六、伪指令 +─────────────────────────────────────── + DW 定义字(2字节). + PROC 定义过程. + ENDP 过程结束. + SEGMENT 定义段. + ASSUME 建立段寄存器寻址. + ENDS 段结束. + END 程序结束. diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_ReadMe.txt b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_ReadMe.txt index 73e66af..4409d79 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_ReadMe.txt +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_ReadMe.txt @@ -1,6 +1,6 @@ -Open "index.html" in any web browser. - -Internet Explorer 6.0 is recommended, -but any other browser that supports HTML -is also OK. - +Open "index.html" in any web browser. + +Internet Explorer 6.0 is recommended, +but any other browser that supports HTML +is also OK. + diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/8086_instruction_set.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/8086_instruction_set.html index de96c34..8bc614b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/8086_instruction_set.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/8086_instruction_set.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|15 Jul 2003 02:36:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|8086_instruction_set.html asm_tutorial_13.html reference.html help.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|15 Jul 2003 02:36:00 -0000 -vti_cacheddtm:TX|15 Jul 2003 02:36:00 -0000 -vti_filesize:IR|92205 -vti_cachedtitle:SR|8086 instructions -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html H|asm_tutorial_02.html H|asm_tutorial_07.html H|../Samples/cmpsb.asm H|../Samples/cmpsw.asm H|../Samples/cmpsb.asm H|http://www.emu8086.com -vti_cachedsvcrellinks:VX|FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_07.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsw.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHHS|http://www.emu8086.com -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Complete\\ 8086\\ instruction\\ set keywords 8086,\\ instruction,\\ set,\\ complete\\ instruction\\ set,\\ example,\\ mov,\\ add,\\ inc,\\ sub,\\ xor,\\ xchg robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|8086 instructions -vti_lineageid:SR|{50C5BAE1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|15 Jul 2003 02:36:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|8086_instruction_set.html asm_tutorial_13.html reference.html help.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|15 Jul 2003 02:36:00 -0000 +vti_cacheddtm:TX|15 Jul 2003 02:36:00 -0000 +vti_filesize:IR|92205 +vti_cachedtitle:SR|8086 instructions +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html H|asm_tutorial_02.html H|asm_tutorial_07.html H|../Samples/cmpsb.asm H|../Samples/cmpsw.asm H|../Samples/cmpsb.asm H|http://www.emu8086.com +vti_cachedsvcrellinks:VX|FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_07.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsw.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHHS|http://www.emu8086.com +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Complete\\ 8086\\ instruction\\ set keywords 8086,\\ instruction,\\ set,\\ complete\\ instruction\\ set,\\ example,\\ mov,\\ add,\\ inc,\\ sub,\\ xor,\\ xchg robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|8086 instructions +vti_lineageid:SR|{50C5BAE1-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/addressing_mode.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/addressing_mode.gif index 3bd7063..f3919b8 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/addressing_mode.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/addressing_mode.gif @@ -1,13 +1,13 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_lineageid:SR|{50C5BAE2-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|661 -vti_lastwidth:IX|165 -vti_lastheight:IX|76 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_lineageid:SR|{50C5BAE2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|661 +vti_lastwidth:IX|165 +vti_lastheight:IX|76 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/array.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/array.gif index e331f80..11d985b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/array.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/array.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2371 -vti_lineageid:SR|{50C5BAE3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2371 +vti_lineageid:SR|{50C5BAE3-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_01.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_01.html index ad0e9eb..1261948 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_01.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_01.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:07:32 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_02.html numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 1) -vti_lineageid:SR|{71BE6501-5B3F-11D8-BBBF-B403AC82C275} -vti_nexttolasttimemodified:TW|09 Feb 2004 13:07:15 -0000 -vti_cacheddtm:TX|09 Feb 2004 13:07:32 -0000 -vti_filesize:IR|5474 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 1) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html S|model.gif S|cpu.gif S|effective_address.gif H|asm_tutorial_02.html -vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FSUS|model.gif FSUS|cpu.gif FSUS|effective_address.gif FHUS|asm_tutorial_02.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description What\\ is\\ an\\ assembly\\ language? keywords emu8086,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:07:32 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_02.html numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 1) +vti_lineageid:SR|{71BE6501-5B3F-11D8-BBBF-B403AC82C275} +vti_nexttolasttimemodified:TW|09 Feb 2004 13:07:15 -0000 +vti_cacheddtm:TX|09 Feb 2004 13:07:32 -0000 +vti_filesize:IR|5474 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 1) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html S|model.gif S|cpu.gif S|effective_address.gif H|asm_tutorial_02.html +vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FSUS|model.gif FSUS|cpu.gif FSUS|effective_address.gif FHUS|asm_tutorial_02.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description What\\ is\\ an\\ assembly\\ language? keywords emu8086,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_02.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_02.html index 89569c0..c47bdf1 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_02.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_02.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|11 Feb 2004 02:59:59 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_01.html asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 2) -vti_lineageid:SR|{01D67A63-5BAE-11D8-BBBF-BB658297DC7D} -vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|11 Feb 2004 02:59:58 -0000 -vti_filesize:IR|6838 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 2) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|addressing_mode.gif S|screen01.gif H|asm_tutorial_01.html H|asm_tutorial_03.html -vti_cachedsvcrellinks:VX|FSUS|addressing_mode.gif FSUS|screen01.gif FHUS|asm_tutorial_01.html FHUS|asm_tutorial_03.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Memory\\ Access\\ using\\ 8086\\ Assembler keywords memory\\ access,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|11 Feb 2004 02:59:59 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_01.html asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 2) +vti_lineageid:SR|{01D67A63-5BAE-11D8-BBBF-BB658297DC7D} +vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|11 Feb 2004 02:59:58 -0000 +vti_filesize:IR|6838 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 2) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|addressing_mode.gif S|screen01.gif H|asm_tutorial_01.html H|asm_tutorial_03.html +vti_cachedsvcrellinks:VX|FSUS|addressing_mode.gif FSUS|screen01.gif FHUS|asm_tutorial_01.html FHUS|asm_tutorial_03.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Memory\\ Access\\ using\\ 8086\\ Assembler keywords memory\\ access,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_03.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_03.html index 513355c..27574e1 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_03.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_03.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|13 Feb 2004 01:52:20 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 3) -vti_lineageid:SR|{50C5BAC3-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|13 Feb 2004 01:50:10 -0000 -vti_cacheddtm:TX|13 Feb 2004 01:52:20 -0000 -vti_filesize:IR|10224 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 3) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|tut3a.gif S|array.gif S|varview.gif H|asm_tutorial_02.html H|asm_tutorial_04.html -vti_cachedsvcrellinks:VX|FSUS|tut3a.gif FSUS|array.gif FSUS|varview.gif FHUS|asm_tutorial_02.html FHUS|asm_tutorial_04.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Variables\\ -\\ 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords variables,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|13 Feb 2004 01:52:20 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 3) +vti_lineageid:SR|{50C5BAC3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|13 Feb 2004 01:50:10 -0000 +vti_cacheddtm:TX|13 Feb 2004 01:52:20 -0000 +vti_filesize:IR|10224 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 3) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|tut3a.gif S|array.gif S|varview.gif H|asm_tutorial_02.html H|asm_tutorial_04.html +vti_cachedsvcrellinks:VX|FSUS|tut3a.gif FSUS|array.gif FSUS|varview.gif FHUS|asm_tutorial_02.html FHUS|asm_tutorial_04.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Variables\\ -\\ 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords variables,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_04.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_04.html index c6a4311..ccd6c9f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_04.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_04.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|19 Feb 2004 04:48:50 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 4) -vti_lineageid:SR|{50C5BAE4-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|19 Feb 2004 04:48:07 -0000 -vti_cacheddtm:TX|19 Feb 2004 04:48:50 -0000 -vti_filesize:IR|3663 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 4) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|supported_interrupts.html H|asm_tutorial_03.html H|asm_tutorial_05.html -vti_cachedsvcrellinks:VX|FHUS|supported_interrupts.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_05.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Interrupts\\ -\\ 8086\\ Assembler keywords interrupts,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|19 Feb 2004 04:48:50 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 4) +vti_lineageid:SR|{50C5BAE4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|19 Feb 2004 04:48:07 -0000 +vti_cacheddtm:TX|19 Feb 2004 04:48:50 -0000 +vti_filesize:IR|3663 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 4) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|supported_interrupts.html H|asm_tutorial_03.html H|asm_tutorial_05.html +vti_cachedsvcrellinks:VX|FHUS|supported_interrupts.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_05.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Interrupts\\ -\\ 8086\\ Assembler keywords interrupts,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_05.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_05.html index 8fe3a75..89343d7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_05.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_05.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|19 Feb 2004 05:09:24 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_06.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 5) -vti_lineageid:SR|{50C5BAE5-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|19 Feb 2004 05:06:53 -0000 -vti_cacheddtm:TX|19 Feb 2004 05:09:24 -0000 -vti_filesize:IR|6513 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 5) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_04.html H|asm_tutorial_06.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_04.html FHUS|asm_tutorial_06.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Library\\ of\\ common\\ functions\\ -\\ emu8086.inc keywords common\\ functions,\\ emu8086.inc,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|19 Feb 2004 05:09:24 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_06.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 5) +vti_lineageid:SR|{50C5BAE5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|19 Feb 2004 05:06:53 -0000 +vti_cacheddtm:TX|19 Feb 2004 05:09:24 -0000 +vti_filesize:IR|6513 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 5) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_04.html H|asm_tutorial_06.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_04.html FHUS|asm_tutorial_06.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Library\\ of\\ common\\ functions\\ -\\ emu8086.inc keywords common\\ functions,\\ emu8086.inc,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_06.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_06.html index e871a02..1c97b90 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_06.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_06.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|20 Feb 2004 05:35:14 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_07.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 6) -vti_lineageid:SR|{50C5BAE6-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|20 Feb 2004 05:35:00 -0000 -vti_cacheddtm:TX|20 Feb 2004 05:35:14 -0000 -vti_filesize:IR|9323 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 6) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|flags.gif H|asm_tutorial_05.html H|asm_tutorial_07.html -vti_cachedsvcrellinks:VX|FSUS|flags.gif FHUS|asm_tutorial_05.html FHUS|asm_tutorial_07.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Arithmetic\\ and\\ Logic\\ Instructions keywords arithmetic,\\ logic,\\ instructions,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|20 Feb 2004 05:35:14 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_07.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 6) +vti_lineageid:SR|{50C5BAE6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|20 Feb 2004 05:35:00 -0000 +vti_cacheddtm:TX|20 Feb 2004 05:35:14 -0000 +vti_filesize:IR|9323 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 6) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|flags.gif H|asm_tutorial_05.html H|asm_tutorial_07.html +vti_cachedsvcrellinks:VX|FSUS|flags.gif FHUS|asm_tutorial_05.html FHUS|asm_tutorial_07.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Arithmetic\\ and\\ Logic\\ Instructions keywords arithmetic,\\ logic,\\ instructions,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_07.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_07.html index 912251c..a78c86f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_07.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_07.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|20 Feb 2004 06:08:15 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_08.html asm_tutorial_06.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 7) -vti_lineageid:SR|{50C5BAE7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|20 Feb 2004 06:07:37 -0000 -vti_cacheddtm:TX|20 Feb 2004 06:08:14 -0000 -vti_filesize:IR|9908 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 7) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_06.html H|asm_tutorial_08.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_06.html FHUS|asm_tutorial_08.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Program\\ Flow\\ Control\\ -\\ Tutorial\\ for\\ Beginners keywords program\\ flow\\ control,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|20 Feb 2004 06:08:15 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_08.html asm_tutorial_06.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 7) +vti_lineageid:SR|{50C5BAE7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|20 Feb 2004 06:07:37 -0000 +vti_cacheddtm:TX|20 Feb 2004 06:08:14 -0000 +vti_filesize:IR|9908 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 7) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_06.html H|asm_tutorial_08.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_06.html FHUS|asm_tutorial_08.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Program\\ Flow\\ Control\\ -\\ Tutorial\\ for\\ Beginners keywords program\\ flow\\ control,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_08.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_08.html index 98dd97f..01a0e42 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_08.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_08.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_07.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4903 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 8) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_07.html H|asm_tutorial_09.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_07.html FHUS|asm_tutorial_09.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Procedures\\ -\\ Tutorial\\ for\\ Beginners keywords procedures,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 8) -vti_lineageid:SR|{50C5BAE8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_07.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4903 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 8) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_07.html H|asm_tutorial_09.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_07.html FHUS|asm_tutorial_09.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Procedures\\ -\\ Tutorial\\ for\\ Beginners keywords procedures,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 8) +vti_lineageid:SR|{50C5BAE8-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_09.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_09.html index 0346766..75fbb5e 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_09.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_09.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:04:54 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_08.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|06 Feb 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 9) -vti_lineageid:SR|{50C5BAE9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|21 Feb 2004 02:00:13 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:04:54 -0000 -vti_filesize:IR|5237 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 9) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|stack.gif H|asm_tutorial_08.html H|asm_tutorial_10.html -vti_cachedsvcrellinks:VX|FSUS|stack.gif FHUS|asm_tutorial_08.html FHUS|asm_tutorial_10.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description The\\ Stack\\ -\\ Tutorial\\ for\\ Beginners keywords stack,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:04:54 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_08.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|06 Feb 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 9) +vti_lineageid:SR|{50C5BAE9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|21 Feb 2004 02:00:13 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:04:54 -0000 +vti_filesize:IR|5237 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 9) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|stack.gif H|asm_tutorial_08.html H|asm_tutorial_10.html +vti_cachedsvcrellinks:VX|FSUS|stack.gif FHUS|asm_tutorial_08.html FHUS|asm_tutorial_10.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description The\\ Stack\\ -\\ Tutorial\\ for\\ Beginners keywords stack,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_10.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_10.html index fb0a251..40ba959 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_10.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_10.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:12:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_11.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 10) -vti_lineageid:SR|{50C5BAEA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:12:08 -0000 -vti_filesize:IR|4250 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 10) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_05.html H|asm_tutorial_05.html H|asm_tutorial_09.html H|asm_tutorial_11.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_05.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_11.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Macros\\ for\\ 8086\\ Assembler keywords macros,\\ 8086,\\ procedures,\\ tutorial,\\ programming robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:12:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_11.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 10) +vti_lineageid:SR|{50C5BAEA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:12:08 -0000 +vti_filesize:IR|4250 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 10) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_05.html H|asm_tutorial_05.html H|asm_tutorial_09.html H|asm_tutorial_11.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_05.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_11.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Macros\\ for\\ 8086\\ Assembler keywords macros,\\ 8086,\\ procedures,\\ tutorial,\\ programming robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_11.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_11.html index 6ed005c..2dcf655 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_11.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_11.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:29:57 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_12.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 11) -vti_lineageid:SR|{50C5BAEB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|21 Feb 2004 02:29:52 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:29:56 -0000 -vti_filesize:IR|6141 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 11) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm H|../Samples/micro-os_loader.asm H|../Samples/micro-os_kernel.asm S|write_bin.gif S|floppy.gif K|supported_interrupts.html H|asm_tutorial_10.html H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_loader.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_kernel.asm FSUS|write_bin.gif FSUS|floppy.gif FHUS|supported_interrupts.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Making\\ your\\ own\\ Operating\\ System keywords operating\\ system,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:29:57 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_12.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 11) +vti_lineageid:SR|{50C5BAEB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|21 Feb 2004 02:29:52 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:29:56 -0000 +vti_filesize:IR|6141 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 11) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm H|../Samples/micro-os_loader.asm H|../Samples/micro-os_kernel.asm S|write_bin.gif S|floppy.gif K|supported_interrupts.html H|asm_tutorial_10.html H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_loader.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_kernel.asm FSUS|write_bin.gif FSUS|floppy.gif FHUS|supported_interrupts.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Making\\ your\\ own\\ Operating\\ System keywords operating\\ system,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_12.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_12.html index ac6d695..ac001d6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_12.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_12.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:36:07 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_13.html asm_tutorial_11.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 12) -vti_lineageid:SR|{50C5BAEC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:36:06 -0000 -vti_filesize:IR|3599 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 12) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|io.html S|traffic.gif S|stepper.gif H|../Samples/stepper_motor.asm H|io.html S|robot.gif H|io.html H|../Samples/robot.asm H|asm_tutorial_11.html H|asm_tutorial_13.html -vti_cachedsvcrellinks:VX|FHUS|io.html FSUS|traffic.gif FSUS|stepper.gif NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/stepper_motor.asm FHUS|io.html FSUS|robot.gif FHUS|io.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/robot.asm FHUS|asm_tutorial_11.html FHUS|asm_tutorial_13.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Controlling\\ External\\ Devices keywords external,\\ devices,\\ 8086,\\ traffic\\ lights,\\ stepper\\ motor,\\ robot robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:36:07 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_13.html asm_tutorial_11.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 12) +vti_lineageid:SR|{50C5BAEC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:36:06 -0000 +vti_filesize:IR|3599 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 12) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|io.html S|traffic.gif S|stepper.gif H|../Samples/stepper_motor.asm H|io.html S|robot.gif H|io.html H|../Samples/robot.asm H|asm_tutorial_11.html H|asm_tutorial_13.html +vti_cachedsvcrellinks:VX|FHUS|io.html FSUS|traffic.gif FSUS|stepper.gif NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/stepper_motor.asm FHUS|io.html FSUS|robot.gif FHUS|io.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/robot.asm FHUS|asm_tutorial_11.html FHUS|asm_tutorial_13.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Controlling\\ External\\ Devices keywords external,\\ devices,\\ 8086,\\ traffic\\ lights,\\ stepper\\ motor,\\ robot robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_13.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_13.html index d7c2cbc..49300e3 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_13.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/asm_tutorial_13.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:38:14 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|01 Aug 2003 15:26:28 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 13) -vti_lineageid:SR|{50C5BAC7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html -vti_nexttolasttimemodified:TW|01 Aug 2003 15:26:28 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:38:14 -0000 -vti_filesize:IR|1191 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 13) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|8086_instruction_set.html H|mailto:info@emu8086.com H|http://www.emu8086.com H|mailto:Zoologist@163.net H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|FHUS|8086_instruction_set.html NHUS|mailto:info@emu8086.com NHHS|http://www.emu8086.com NHUS|mailto:Zoologist@163.net FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Congratulations!\\ 8086\\ Assembler\\ Tutorial\\ Completed! keywords 8086\\ tutorial robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:38:14 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|01 Aug 2003 15:26:28 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 13) +vti_lineageid:SR|{50C5BAC7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html +vti_nexttolasttimemodified:TW|01 Aug 2003 15:26:28 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:38:14 -0000 +vti_filesize:IR|1191 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 13) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|8086_instruction_set.html H|mailto:info@emu8086.com H|http://www.emu8086.com H|mailto:Zoologist@163.net H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|FHUS|8086_instruction_set.html NHUS|mailto:info@emu8086.com NHHS|http://www.emu8086.com NHUS|mailto:Zoologist@163.net FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Congratulations!\\ 8086\\ Assembler\\ Tutorial\\ Completed! keywords 8086\\ tutorial robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buy2.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buy2.gif index c975cd3..3c97930 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buy2.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buy2.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 -vti_filesize:IR|1265 -vti_lineageid:SR|{50C5BAC8-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 +vti_filesize:IR|1265 +vti_lineageid:SR|{50C5BAC8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buynow.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buynow.gif index 42c42ee..6058cba 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buynow.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/buynow.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 -vti_filesize:IR|482 -vti_lineageid:SR|{50C5BAC9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 +vti_filesize:IR|482 +vti_lineageid:SR|{50C5BAC9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compatibility.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compatibility.html index ff54cc1..ad4d573 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compatibility.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compatibility.html @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|4141 -vti_cachedtitle:SR|MASM / TASM compatibility -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description MASM\\ /\\ TASM\\ compatibility keywords MASM,\\ TASM,\\ compatibility -vti_charset:SR|gb2312 -vti_title:SR|MASM / TASM compatibility -vti_lineageid:SR|{50C5BACA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|4141 +vti_cachedtitle:SR|MASM / TASM compatibility +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description MASM\\ /\\ TASM\\ compatibility keywords MASM,\\ TASM,\\ compatibility +vti_charset:SR|gb2312 +vti_title:SR|MASM / TASM compatibility +vti_lineageid:SR|{50C5BACA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile01.gif index e2df2e2..2a6f3bc 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile01.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:43:16 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:43:16 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:43:16 -0000 -vti_filesize:IR|13863 -vti_lineageid:SR|{50C5BACB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|compiler.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:43:16 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:43:16 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:43:16 -0000 +vti_filesize:IR|13863 +vti_lineageid:SR|{50C5BACB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|compiler.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile03.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile03.gif index 11d33ad..e861e28 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile03.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compile03.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10221 -vti_lineageid:SR|{50C5BACC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|compiler.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10221 +vti_lineageid:SR|{50C5BACC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|compiler.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compiler.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compiler.html index 8513aee..a4dff07 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compiler.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/compiler.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:43:58 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:43:58 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:43:58 -0000 -vti_filesize:IR|9431 -vti_cachedtitle:SR|Compiling Assembly Code -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|compile01.gif H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm S|compile03.gif -vti_cachedsvcrellinks:VX|FSUS|compile01.gif NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm FSUS|compile03.gif -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Compiling\\ Assembly\\ Code keywords compiler,\\ reference,\\ description,\\ hints -vti_charset:SR|gb2312 -vti_title:SR|Compiling Assembly Code -vti_lineageid:SR|{50C5BACD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:43:58 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:43:58 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:43:58 -0000 +vti_filesize:IR|9431 +vti_cachedtitle:SR|Compiling Assembly Code +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|compile01.gif H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm S|compile03.gif +vti_cachedsvcrellinks:VX|FSUS|compile01.gif NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm FSUS|compile03.gif +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Compiling\\ Assembly\\ Code keywords compiler,\\ reference,\\ description,\\ hints +vti_charset:SR|gb2312 +vti_title:SR|Compiling Assembly Code +vti_lineageid:SR|{50C5BACD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/cpu.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/cpu.gif index 6457988..6b0d048 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/cpu.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/cpu.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|7219 -vti_lineageid:SR|{50C5BAED-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|7219 +vti_lineageid:SR|{50C5BAED-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/custom_memory_map.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/custom_memory_map.html index 732ea78..c92d69e 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/custom_memory_map.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/custom_memory_map.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|2175 -vti_cachedtitle:SR|Custom Memory Map -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|memory.html -vti_cachedsvcrellinks:VX|FHUS|memory.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Custom\\ Memory\\ Map keywords custom\\ memory\\ map,\\ assembly,\\ 8086\\ assembler,\\ reference,\\ description,\\ 80186 robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Custom Memory Map -vti_lineageid:SR|{50C5BACE-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|2175 +vti_cachedtitle:SR|Custom Memory Map +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|memory.html +vti_cachedsvcrellinks:VX|FHUS|memory.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Custom\\ Memory\\ Map keywords custom\\ memory\\ map,\\ assembly,\\ 8086\\ assembler,\\ reference,\\ description,\\ 80186 robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Custom Memory Map +vti_lineageid:SR|{50C5BACE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/editor.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/editor.html index 8acf2ec..e2aa263 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/editor.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/editor.html @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|5863 -vti_cachedtitle:SR|Editor -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Source\\ Code\\ Editor keywords source,\\ code,\\ editor robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Editor -vti_lineageid:SR|{50C5BACF-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|5863 +vti_cachedtitle:SR|Editor +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Source\\ Code\\ Editor keywords source,\\ code,\\ editor robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Editor +vti_lineageid:SR|{50C5BACF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/effective_address.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/effective_address.gif index d11c1f0..37f0889 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/effective_address.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/effective_address.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|308 -vti_lineageid:SR|{50C5BAEE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|308 +vti_lineageid:SR|{50C5BAEE-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator.html index 8683988..e297a56 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:54:44 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:54:44 -0000 -vti_cacheddtm:TX|11 Feb 2004 02:59:24 -0000 -vti_filesize:IR|5085 -vti_cachedtitle:SR|Using Emulator -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|emulator01.gif S|emulator02.gif S|emulator03.gif H|supported_interrupts.html H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm -vti_cachedsvcrellinks:VX|FSUS|emulator01.gif FSUS|emulator02.gif FSUS|emulator03.gif FHUS|supported_interrupts.html NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Using\\ Emulator keywords using\\ emulator,\\ simulator,\\ reference,\\ description,\\ hints robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Using Emulator -vti_lineageid:SR|{50C5BAD0-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:54:44 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:54:44 -0000 +vti_cacheddtm:TX|11 Feb 2004 02:59:24 -0000 +vti_filesize:IR|5085 +vti_cachedtitle:SR|Using Emulator +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|emulator01.gif S|emulator02.gif S|emulator03.gif H|supported_interrupts.html H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm +vti_cachedsvcrellinks:VX|FSUS|emulator01.gif FSUS|emulator02.gif FSUS|emulator03.gif FHUS|supported_interrupts.html NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Using\\ Emulator keywords using\\ emulator,\\ simulator,\\ reference,\\ description,\\ hints robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Using Emulator +vti_lineageid:SR|{50C5BAD0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator01.gif index fd035a1..11ffe53 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator01.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:54:06 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:54:06 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:54:06 -0000 -vti_filesize:IR|114 -vti_lineageid:SR|{50C5BAD1-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:54:06 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:54:06 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:54:06 -0000 +vti_filesize:IR|114 +vti_lineageid:SR|{50C5BAD1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator02.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator02.gif index 9168b77..e60927b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator02.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator02.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|31 Jul 2003 07:47:36 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|31 Jul 2003 07:47:36 -0000 -vti_cacheddtm:TX|31 Jul 2003 07:47:36 -0000 -vti_filesize:IR|21052 -vti_lineageid:SR|{50C5BAD2-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|31 Jul 2003 07:47:36 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|31 Jul 2003 07:47:36 -0000 +vti_cacheddtm:TX|31 Jul 2003 07:47:36 -0000 +vti_filesize:IR|21052 +vti_lineageid:SR|{50C5BAD2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator03.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator03.gif index 90fa9fe..c220cec 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator03.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/emulator03.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|31 Jul 2003 07:51:54 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|31 Jul 2003 07:51:54 -0000 -vti_cacheddtm:TX|31 Jul 2003 07:51:54 -0000 -vti_filesize:IR|22312 -vti_lineageid:SR|{50C5BAD3-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|31 Jul 2003 07:51:54 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|31 Jul 2003 07:51:54 -0000 +vti_cacheddtm:TX|31 Jul 2003 07:51:54 -0000 +vti_filesize:IR|22312 +vti_lineageid:SR|{50C5BAD3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/flags.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/flags.gif index ee39a56..587bb7b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/flags.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/flags.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1967 -vti_lineageid:SR|{50C5BAD4-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_06.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1967 +vti_lineageid:SR|{50C5BAD4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_06.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/floppy.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/floppy.gif index 44d554d..2fca084 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/floppy.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/floppy.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|5489 -vti_lineageid:SR|{50C5BAD5-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_11.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|5489 +vti_lineageid:SR|{50C5BAD5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_11.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/help.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/help.html index 8476c3d..d208f30 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/help.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/help.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:40:10 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html index.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|12 Jul 2003 07:11:04 -0000 -vti_title:SR|Documentation for Emu8086 -vti_lineageid:SR|{E4C0B80B-5A6D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 13:34:09 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:40:10 -0000 -vti_filesize:IR|1388 -vti_cachedtitle:SR|Documentation for Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|start_unframed.html H|tutorials.html H|reference.html H|8086_instruction_set.html -vti_cachedsvcrellinks:VX|FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html FHUS|8086_instruction_set.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description 8086\\ Assembler\\ Reference\\ and\\ Tutorials keywords Emu8086,\\ assembler,\\ 8086,\\ tutorial,\\ emulator,\\ cpu,\\ disassembler,\\ simulator,\\ virtual\\ pc,\\ emulation\\ software,\\ 80186,\\ debugger -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:40:10 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html index.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|12 Jul 2003 07:11:04 -0000 +vti_title:SR|Documentation for Emu8086 +vti_lineageid:SR|{E4C0B80B-5A6D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 13:34:09 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:40:10 -0000 +vti_filesize:IR|1388 +vti_cachedtitle:SR|Documentation for Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|start_unframed.html H|tutorials.html H|reference.html H|8086_instruction_set.html +vti_cachedsvcrellinks:VX|FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html FHUS|8086_instruction_set.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description 8086\\ Assembler\\ Reference\\ and\\ Tutorials keywords Emu8086,\\ assembler,\\ 8086,\\ tutorial,\\ emulator,\\ cpu,\\ disassembler,\\ simulator,\\ virtual\\ pc,\\ emulation\\ software,\\ 80186,\\ debugger +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/index.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/index.html index da76ccb..8a2810b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/index.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/index.html @@ -1,24 +1,24 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:13:30 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|Help for Emu8086 -vti_lineageid:SR|{E4C0B809-5A6D-11D8-BBBF-A878AF7FD375} -vti_backlinkinfo:VX|index.htm -vti_nexttolasttimemodified:TW|09 Feb 2004 13:13:17 -0000 -vti_editor:SW|FrontPage Frames Wizard -vti_cacheddtm:TX|09 Feb 2004 13:13:30 -0000 -vti_filesize:IR|336 -vti_cachedtitle:SR|Help for Emu8086 -vti_cachedlinkinfo:VX|F|menu.html F|help.html -vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|help.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 -vti_charset:SR|gb2312 -vti_generator:SR|Microsoft FrontPage 5.0 -vti_hasframeset:BR|true +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:13:30 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|Help for Emu8086 +vti_lineageid:SR|{E4C0B809-5A6D-11D8-BBBF-A878AF7FD375} +vti_backlinkinfo:VX|index.htm +vti_nexttolasttimemodified:TW|09 Feb 2004 13:13:17 -0000 +vti_editor:SW|FrontPage Frames Wizard +vti_cacheddtm:TX|09 Feb 2004 13:13:30 -0000 +vti_filesize:IR|336 +vti_cachedtitle:SR|Help for Emu8086 +vti_cachedlinkinfo:VX|F|menu.html F|help.html +vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|help.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 +vti_charset:SR|gb2312 +vti_generator:SR|Microsoft FrontPage 5.0 +vti_hasframeset:BR|true diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/io.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/io.html index c8dc49b..47c77ee 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/io.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/io.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|05 Jun 2003 16:00:00 -0000 -vti_filesize:IR|9256 -vti_cachedtitle:SR|I/O ports -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|mailto:info@emu8086.com S|traffic.gif S|stepper.gif S|robot.gif -vti_cachedsvcrellinks:VX|NHUS|mailto:info@emu8086.com FSUS|traffic.gif FSUS|stepper.gif FSUS|robot.gif -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Simulation\\ of\\ I/O\\ ports\\ of\\ IBM\\ PC keywords i/o\\ ports,\\ direct\\ io,\\ port robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|I/O ports -vti_lineageid:SR|{50C5BAD6-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|05 Jun 2003 16:00:00 -0000 +vti_filesize:IR|9256 +vti_cachedtitle:SR|I/O ports +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|mailto:info@emu8086.com S|traffic.gif S|stepper.gif S|robot.gif +vti_cachedsvcrellinks:VX|NHUS|mailto:info@emu8086.com FSUS|traffic.gif FSUS|stepper.gif FSUS|robot.gif +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Simulation\\ of\\ I/O\\ ports\\ of\\ IBM\\ PC keywords i/o\\ ports,\\ direct\\ io,\\ port robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|I/O ports +vti_lineageid:SR|{50C5BAD6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/lock.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/lock.gif index 1379b36..6bec989 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/lock.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/lock.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|118 -vti_lineageid:SR|{50C5BAD7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|118 +vti_lineageid:SR|{50C5BAD7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/memory.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/memory.html index be37b14..c2a3692 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/memory.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/memory.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|7749 -vti_cachedtitle:SR|Global Memory Table -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|memory.html H|supported_interrupts.html H|custom_memory_map.html -vti_cachedsvcrellinks:VX|FKUS|memory.html FHUS|supported_interrupts.html FHUS|custom_memory_map.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Global\\ Memory\\ Table keywords global,\\ memory,\\ table robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Global Memory Table -vti_lineageid:SR|{50C5BAD8-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html reference.html custom_memory_map.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|7749 +vti_cachedtitle:SR|Global Memory Table +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|memory.html H|supported_interrupts.html H|custom_memory_map.html +vti_cachedsvcrellinks:VX|FKUS|memory.html FHUS|supported_interrupts.html FHUS|custom_memory_map.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Global\\ Memory\\ Table keywords global,\\ memory,\\ table robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Global Memory Table +vti_lineageid:SR|{50C5BAD8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html reference.html custom_memory_map.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/menu.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/menu.html index 1ee527f..9703cf9 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/menu.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/menu.html @@ -1,23 +1,23 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:13:17 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|emu8088/translate/index.html index.html start.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|12 Jul 2003 03:50:18 -0000 -vti_title:SR|HELP MENU FOR EMU8086 -vti_lineageid:SR|{E4C0B80A-5A6D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|09 Feb 2004 04:18:37 -0000 -vti_cacheddtm:TX|09 Feb 2004 13:13:16 -0000 -vti_filesize:IR|743 -vti_cachedtitle:SR|HELP MENU FOR EMU8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|help.html H|start_unframed.html H|tutorials.html H|reference.html -vti_cachedsvcrellinks:VX|FHUS|help.html FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 description Just\\ a\\ menu keywords download\\ 8086 robots nofollow -vti_charset:SR|gb2312 -vti_generator:SR|Microsoft FrontPage 5.0 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:13:17 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|emu8088/translate/index.html index.html start.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|12 Jul 2003 03:50:18 -0000 +vti_title:SR|HELP MENU FOR EMU8086 +vti_lineageid:SR|{E4C0B80A-5A6D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|09 Feb 2004 04:18:37 -0000 +vti_cacheddtm:TX|09 Feb 2004 13:13:16 -0000 +vti_filesize:IR|743 +vti_cachedtitle:SR|HELP MENU FOR EMU8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|help.html H|start_unframed.html H|tutorials.html H|reference.html +vti_cachedsvcrellinks:VX|FHUS|help.html FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 description Just\\ a\\ menu keywords download\\ 8086 robots nofollow +vti_charset:SR|gb2312 +vti_generator:SR|Microsoft FrontPage 5.0 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/model.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/model.gif index 63ba889..4f1996d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/model.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/model.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2960 -vti_lineageid:SR|{50C5BAEF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2960 +vti_lineageid:SR|{50C5BAEF-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num1.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num1.gif index f0a0e32..8073e0c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num1.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num1.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1562 -vti_lineageid:SR|{50C5BAF0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1562 +vti_lineageid:SR|{50C5BAF0-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num10.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num10.gif index 3e25a73..7701c86 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num10.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num10.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|840 -vti_lineageid:SR|{50C5BAF1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|840 +vti_lineageid:SR|{50C5BAF1-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num11.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num11.gif index d89fcdc..f25efe7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num11.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num11.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1887 -vti_lineageid:SR|{50C5BAF2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1887 +vti_lineageid:SR|{50C5BAF2-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num12.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num12.gif index d25cc76..bb1b305 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num12.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num12.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10694 -vti_lineageid:SR|{50C5BAF3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10694 +vti_lineageid:SR|{50C5BAF3-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num2.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num2.gif index 2cbd964..23ea8f6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num2.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num2.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1567 -vti_lineageid:SR|{50C5BAF4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1567 +vti_lineageid:SR|{50C5BAF4-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num3.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num3.gif index 1d08c45..c78fefb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num3.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num3.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|642 -vti_lineageid:SR|{50C5BAF5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|642 +vti_lineageid:SR|{50C5BAF5-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num4.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num4.gif index 8d4fc2b..ad0bc81 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num4.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num4.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2186 -vti_lineageid:SR|{50C5BAF6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2186 +vti_lineageid:SR|{50C5BAF6-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num5.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num5.gif index 87a19d9..0655cf6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num5.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num5.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2819 -vti_lineageid:SR|{50C5BAF7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2819 +vti_lineageid:SR|{50C5BAF7-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num6.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num6.gif index 038475a..0a733e7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num6.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num6.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2064 -vti_lineageid:SR|{50C5BAF8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2064 +vti_lineageid:SR|{50C5BAF8-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num7.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num7.gif index 0df675b..d0921bb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num7.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num7.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1343 -vti_lineageid:SR|{50C5BAF9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1343 +vti_lineageid:SR|{50C5BAF9-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num8.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num8.gif index f9a2efb..72fd47c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num8.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num8.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2883 -vti_lineageid:SR|{50C5BAFA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2883 +vti_lineageid:SR|{50C5BAFA-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num9.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num9.gif index 4c0453b..aa5fa3d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num9.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/num9.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4916 -vti_lineageid:SR|{50C5BAFB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4916 +vti_lineageid:SR|{50C5BAFB-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/numbering_systems_tutorial.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/numbering_systems_tutorial.html index 96761f9..a4d8111 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/numbering_systems_tutorial.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/numbering_systems_tutorial.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 14:48:06 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_01.html numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|Numbering Systems Tutorial -vti_lineageid:SR|{CE8EB365-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 14:42:36 -0000 -vti_cacheddtm:TX|08 Feb 2004 14:48:06 -0000 -vti_filesize:IR|10244 -vti_cachedtitle:SR|Numbering Systems Tutorial -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|num1.gif S|num2.gif S|num3.gif S|num4.gif S|num5.gif S|num7.gif S|num6.gif S|num8.gif S|num9.gif K|numbering_systems_tutorial.html K|numbering_systems_tutorial.html S|num10.gif S|num11.gif S|num12.gif H|asm_tutorial_01.html -vti_cachedsvcrellinks:VX|FSUS|num1.gif FSUS|num2.gif FSUS|num3.gif FSUS|num4.gif FSUS|num5.gif FSUS|num7.gif FSUS|num6.gif FSUS|num8.gif FSUS|num9.gif FKUS|numbering_systems_tutorial.html FKUS|numbering_systems_tutorial.html FSUS|num10.gif FSUS|num11.gif FSUS|num12.gif FHUS|asm_tutorial_01.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Numbering\\ Systems\\ Tutorials keywords numbering\\ systems\\ tutorial,\\ 8086,\\ hex,\\ oct,\\ bin,\\ binary,\\ hexadecimal,\\ octal,\\ ocatal robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 14:48:06 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_01.html numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|Numbering Systems Tutorial +vti_lineageid:SR|{CE8EB365-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 14:42:36 -0000 +vti_cacheddtm:TX|08 Feb 2004 14:48:06 -0000 +vti_filesize:IR|10244 +vti_cachedtitle:SR|Numbering Systems Tutorial +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|num1.gif S|num2.gif S|num3.gif S|num4.gif S|num5.gif S|num7.gif S|num6.gif S|num8.gif S|num9.gif K|numbering_systems_tutorial.html K|numbering_systems_tutorial.html S|num10.gif S|num11.gif S|num12.gif H|asm_tutorial_01.html +vti_cachedsvcrellinks:VX|FSUS|num1.gif FSUS|num2.gif FSUS|num3.gif FSUS|num4.gif FSUS|num5.gif FSUS|num7.gif FSUS|num6.gif FSUS|num8.gif FSUS|num9.gif FKUS|numbering_systems_tutorial.html FKUS|numbering_systems_tutorial.html FSUS|num10.gif FSUS|num11.gif FSUS|num12.gif FHUS|asm_tutorial_01.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Numbering\\ Systems\\ Tutorials keywords numbering\\ systems\\ tutorial,\\ 8086,\\ hex,\\ oct,\\ bin,\\ binary,\\ hexadecimal,\\ octal,\\ ocatal robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/reference.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/reference.html index 138ede6..beb4b55 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/reference.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/reference.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|1295 -vti_cachedtitle:SR|Reference for Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|editor.html H|compiler.html H|emulator.html H|8086_instruction_set.html H|supported_interrupts.html H|memory.html H|custom_memory_map.html H|compatibility.html H|io.html -vti_cachedsvcrellinks:VX|FHUS|editor.html FHUS|compiler.html FHUS|emulator.html FHUS|8086_instruction_set.html FHUS|supported_interrupts.html FHUS|memory.html FHUS|custom_memory_map.html FHUS|compatibility.html FHUS|io.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description emu8086\\ Reference\\ and\\ Description keywords emu8086,\\ reference,\\ description,\\ hints -vti_charset:SR|gb2312 -vti_title:SR|Reference for Emu8086 -vti_lineageid:SR|{50C5BAFC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|1295 +vti_cachedtitle:SR|Reference for Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|editor.html H|compiler.html H|emulator.html H|8086_instruction_set.html H|supported_interrupts.html H|memory.html H|custom_memory_map.html H|compatibility.html H|io.html +vti_cachedsvcrellinks:VX|FHUS|editor.html FHUS|compiler.html FHUS|emulator.html FHUS|8086_instruction_set.html FHUS|supported_interrupts.html FHUS|memory.html FHUS|custom_memory_map.html FHUS|compatibility.html FHUS|io.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description emu8086\\ Reference\\ and\\ Description keywords emu8086,\\ reference,\\ description,\\ hints +vti_charset:SR|gb2312 +vti_title:SR|Reference for Emu8086 +vti_lineageid:SR|{50C5BAFC-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/requirements.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/requirements.html index b2d8c91..f48bde2 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/requirements.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/requirements.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 05:21:44 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 05:21:44 -0000 -vti_cacheddtm:TX|05 Jul 2003 05:21:44 -0000 -vti_filesize:IR|1635 -vti_cachedtitle:SR|Software Requirements -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe H|http://www.simtel.net/vbrun.php -vti_cachedsvcrellinks:VX|NHHS|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe NHHS|http://www.simtel.net/vbrun.php -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Software\\ Requirements\\ for\\ Emu8086 keywords software,\\ requirements robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Software Requirements -vti_lineageid:SR|{50C5BAD9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 05:21:44 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 05:21:44 -0000 +vti_cacheddtm:TX|05 Jul 2003 05:21:44 -0000 +vti_filesize:IR|1635 +vti_cachedtitle:SR|Software Requirements +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe H|http://www.simtel.net/vbrun.php +vti_cachedsvcrellinks:VX|NHHS|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe NHHS|http://www.simtel.net/vbrun.php +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Software\\ Requirements\\ for\\ Emu8086 keywords software,\\ requirements robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Software Requirements +vti_lineageid:SR|{50C5BAD9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/robot.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/robot.gif index b780405..72f0dd6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/robot.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/robot.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|8426 -vti_lineageid:SR|{50C5BADA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|8426 +vti_lineageid:SR|{50C5BADA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/screen01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/screen01.gif index 1ea1328..532024c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/screen01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/screen01.gif @@ -1,13 +1,13 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_lineageid:SR|{50C5BAFD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2513 -vti_lastwidth:IX|426 -vti_lastheight:IX|174 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_lineageid:SR|{50C5BAFD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2513 +vti_lastwidth:IX|426 +vti_lastheight:IX|174 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stack.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stack.gif index 90960da..d4ab938 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stack.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stack.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1552 -vti_lineageid:SR|{50C5BADB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_09.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1552 +vti_lineageid:SR|{50C5BADB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_09.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start.html index 94ccd2b..3ab03df 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 03:31:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:31:08 -0000 -vti_cacheddtm:TX|05 Jul 2003 03:31:08 -0000 -vti_filesize:IR|330 -vti_cachedtitle:SR|Help for Emu8086 -vti_cachedlinkinfo:VX|F|menu.html F|start_unframed.html -vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|start_unframed.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Textpad -vti_charset:SR|gb2312 -vti_generator:SR|Textpad -vti_hasframeset:BR|true -vti_title:SR|Help for Emu8086 -vti_lineageid:SR|{50C5BADC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 03:31:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:31:08 -0000 +vti_cacheddtm:TX|05 Jul 2003 03:31:08 -0000 +vti_filesize:IR|330 +vti_cachedtitle:SR|Help for Emu8086 +vti_cachedlinkinfo:VX|F|menu.html F|start_unframed.html +vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|start_unframed.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Textpad +vti_charset:SR|gb2312 +vti_generator:SR|Textpad +vti_hasframeset:BR|true +vti_title:SR|Help for Emu8086 +vti_lineageid:SR|{50C5BADC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start_unframed.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start_unframed.html index 3c29702..bd2c6ff 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start_unframed.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/start_unframed.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:40:03 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html start.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:34:42 -0000 -vti_title:SR|Overview of Emu8086 -vti_lineageid:SR|{CE8EB363-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|05 Jul 2003 03:34:42 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:40:02 -0000 -vti_filesize:IR|2487 -vti_cachedtitle:SR|Overview of Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|tutorials.html -vti_cachedsvcrellinks:VX|FHUS|tutorials.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords overview,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:40:03 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html start.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:34:42 -0000 +vti_title:SR|Overview of Emu8086 +vti_lineageid:SR|{CE8EB363-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|05 Jul 2003 03:34:42 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:40:02 -0000 +vti_filesize:IR|2487 +vti_cachedtitle:SR|Overview of Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|tutorials.html +vti_cachedsvcrellinks:VX|FHUS|tutorials.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords overview,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stepper.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stepper.gif index 6c74a1a..6d35f4c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stepper.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/stepper.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4167 -vti_lineageid:SR|{50C5BADD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4167 +vti_lineageid:SR|{50C5BADD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/supported_interrupts.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/supported_interrupts.html index 6b878f7..065d43a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/supported_interrupts.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/supported_interrupts.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 03:37:52 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:37:52 -0000 -vti_cacheddtm:TX|05 Jul 2003 03:37:52 -0000 -vti_filesize:IR|13578 -vti_cachedtitle:SR|Interrupts currently supported by emulator -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html -vti_cachedsvcrellinks:VX|FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Interrupts\\ currently\\ supported\\ by\\ emulator keywords supported,\\ interrupts robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Interrupts currently supported by emulator -vti_lineageid:SR|{50C5BADE-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html emulator.html asm_tutorial_04.html asm_tutorial_11.html reference.html supported_interrupts.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 03:37:52 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:37:52 -0000 +vti_cacheddtm:TX|05 Jul 2003 03:37:52 -0000 +vti_filesize:IR|13578 +vti_cachedtitle:SR|Interrupts currently supported by emulator +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html +vti_cachedsvcrellinks:VX|FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Interrupts\\ currently\\ supported\\ by\\ emulator keywords supported,\\ interrupts robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Interrupts currently supported by emulator +vti_lineageid:SR|{50C5BADE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html emulator.html asm_tutorial_04.html asm_tutorial_11.html reference.html supported_interrupts.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/traffic.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/traffic.gif index 0cbfdd8..e771ff0 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/traffic.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/traffic.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|6778 -vti_lineageid:SR|{50C5BADF-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|6778 +vti_lineageid:SR|{50C5BADF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tut3a.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tut3a.gif index 1571368..e0bc151 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tut3a.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tut3a.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10570 -vti_lineageid:SR|{50C5BAFE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10570 +vti_lineageid:SR|{50C5BAFE-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tutorials.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tutorials.html index 3556987..c412e4f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tutorials.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/tutorials.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:43:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html start_unframed.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|Tutorials -vti_lineageid:SR|{CE8EB364-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 13:43:03 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:43:02 -0000 -vti_filesize:IR|1788 -vti_cachedtitle:SR|Tutorials -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html H|asm_tutorial_01.html H|asm_tutorial_02.html H|asm_tutorial_03.html H|asm_tutorial_04.html H|asm_tutorial_05.html H|asm_tutorial_06.html H|asm_tutorial_07.html H|asm_tutorial_08.html H|asm_tutorial_09.html H|asm_tutorial_10.html H|asm_tutorial_11.html H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FHUS|asm_tutorial_01.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_04.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_06.html FHUS|asm_tutorial_07.html FHUS|asm_tutorial_08.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_11.html FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Tutorials\\ for\\ 8086\\ Assembler keywords tutorials,\\ 8086,\\ assembler,\\ simulator -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:43:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html start_unframed.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|Tutorials +vti_lineageid:SR|{CE8EB364-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 13:43:03 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:43:02 -0000 +vti_filesize:IR|1788 +vti_cachedtitle:SR|Tutorials +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html H|asm_tutorial_01.html H|asm_tutorial_02.html H|asm_tutorial_03.html H|asm_tutorial_04.html H|asm_tutorial_05.html H|asm_tutorial_06.html H|asm_tutorial_07.html H|asm_tutorial_08.html H|asm_tutorial_09.html H|asm_tutorial_10.html H|asm_tutorial_11.html H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FHUS|asm_tutorial_01.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_04.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_06.html FHUS|asm_tutorial_07.html FHUS|asm_tutorial_08.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_11.html FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Tutorials\\ for\\ 8086\\ Assembler keywords tutorials,\\ 8086,\\ assembler,\\ simulator +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/varview.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/varview.gif index d799c07..83aca90 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/varview.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/varview.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|3310 -vti_lineageid:SR|{50C5BAFF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|3310 +vti_lineageid:SR|{50C5BAFF-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/write_bin.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/write_bin.gif index a67d824..327f562 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/write_bin.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_cnf/write_bin.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4011 -vti_lineageid:SR|{50C5BAE0-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_11.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4011 +vti_lineageid:SR|{50C5BAE0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_11.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todo.htm b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todo.htm index bb94b3a..b0e22a5 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todo.htm +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todo.htm @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 -vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 -vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 -vti_filesize:IR|555 -vti_cachedtitle:SR|Active To Do List -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 -vti_charset:SR|utf-8 -vti_title:SR|Active To Do List -vti_extenderversion:SR|5.0.2.2623 -vti_lineageid:SR|{844680A3-5D41-11D8-BBC1-DB570625977B} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 +vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 +vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 +vti_filesize:IR|555 +vti_cachedtitle:SR|Active To Do List +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 +vti_title:SR|Active To Do List +vti_extenderversion:SR|5.0.2.2623 +vti_lineageid:SR|{844680A3-5D41-11D8-BBC1-DB570625977B} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todoh.htm b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todoh.htm index acf5d14..15f8610 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todoh.htm +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/_vti_cnf/_x_todoh.htm @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 -vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 -vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 -vti_filesize:IR|557 -vti_cachedtitle:SR|To Do List History -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 -vti_charset:SR|utf-8 -vti_title:SR|To Do List History -vti_extenderversion:SR|5.0.2.2623 -vti_lineageid:SR|{844680A4-5D41-11D8-BBC1-DB570625977B} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 +vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 +vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 +vti_filesize:IR|557 +vti_cachedtitle:SR|To Do List History +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 +vti_title:SR|To Do List History +vti_extenderversion:SR|5.0.2.2623 +vti_lineageid:SR|{844680A4-5D41-11D8-BBC1-DB570625977B} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/botinfs.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/botinfs.cnf index a8e0751..3db463d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/botinfs.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/botinfs.cnf @@ -1,2 +1,2 @@ -vti_encoding:SR|utf8-nl -C\:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\50\\bots\\vinavbar\\vinavbar.inf:VW|vinavbar +vti_encoding:SR|utf8-nl +C\:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\50\\bots\\vinavbar\\vinavbar.inf:VW|vinavbar diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/bots.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/bots.cnf index 2e6e14d..37a50b7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/bots.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/bots.cnf @@ -1,2 +1,2 @@ -vti_encoding:SR|utf8-nl -vinavbar:VW|C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\vinavbar.inf vinavbar E I info N C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\fp5Avnb.dll +vti_encoding:SR|utf8-nl +vinavbar:VW|C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\vinavbar.inf vinavbar E I info N C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\fp5Avnb.dll diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/service.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/service.cnf index 479f2e4..6e77bfe 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/service.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/service.cnf @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_restartmanual:IX|0 -vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_TimedDocEvents -vti_webservertype:SR|diskweb -vti_categories:VR|鏃呰 璐圭敤鎶ヨ〃 鍟嗗姟 绔炰簤 鐩殑/鐩爣 涓绘剰 鏉傞」 绛夊緟 VIP 澶勭悊涓 璁″垝 鏃ョ▼琛 -vti_defaultlanguage:SR|zh-cn -vti_approvalapproved:SR|鍚屾剰 -vti_approvaldenied:SR|鎷掔粷 -vti_timecreated:TR|08 Feb 2004 11:47:07 -0000 -vti_oldestcompatibleversion:SR|2.0.0.0 -vti_defaultcharset:SR|gb2312 -vti_navbuttonuplabel:SR|涓婁竴灞 -vti_disableautoimgsizeexts:SX|.asp -vti_extenderversion:SR|5.0.2.2623 -vti_publishmetainfokeys:VR|vti_assignedto vti_approvallevel vti_categories vti_description -vti_ignorekeyboard:IR|1 -vti_navbuttonprevlabel:SR|涓婁竴椤 -vti_navbuttonnextlabel:SR|涓嬩竴椤 -vti_approvallevels:VR|鍚屾剰 鎷掔粷 鎸傝捣妫鏌 -vti_navbuttonhomelabel:SR|涓婚〉 -vti_dependenciesood:IR|1 +vti_encoding:SR|utf8-nl +vti_restartmanual:IX|0 +vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_TimedDocEvents +vti_webservertype:SR|diskweb +vti_categories:VR|鏃呰 璐圭敤鎶ヨ〃 鍟嗗姟 绔炰簤 鐩殑/鐩爣 涓绘剰 鏉傞」 绛夊緟 VIP 澶勭悊涓 璁″垝 鏃ョ▼琛 +vti_defaultlanguage:SR|zh-cn +vti_approvalapproved:SR|鍚屾剰 +vti_approvaldenied:SR|鎷掔粷 +vti_timecreated:TR|08 Feb 2004 11:47:07 -0000 +vti_oldestcompatibleversion:SR|2.0.0.0 +vti_defaultcharset:SR|gb2312 +vti_navbuttonuplabel:SR|涓婁竴灞 +vti_disableautoimgsizeexts:SX|.asp +vti_extenderversion:SR|5.0.2.2623 +vti_publishmetainfokeys:VR|vti_assignedto vti_approvallevel vti_categories vti_description +vti_ignorekeyboard:IR|1 +vti_navbuttonprevlabel:SR|涓婁竴椤 +vti_navbuttonnextlabel:SR|涓嬩竴椤 +vti_approvallevels:VR|鍚屾剰 鎷掔粷 鎸傝捣妫鏌 +vti_navbuttonhomelabel:SR|涓婚〉 +vti_dependenciesood:IR|1 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/services.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/services.cnf index b498fd4..d83d55f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/services.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/services.cnf @@ -1 +1 @@ -/ +/ diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/structure.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/structure.cnf index 23592e3..aa39c87 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/structure.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/_vti_pvt/structure.cnf @@ -1,4 +1,4 @@ -3.0.0.507 -1001 -1000,index.html,0,Help for Emu8086,0,1076240988,1 +3.0.0.507 +1001 +1000,index.html,0,Help for Emu8086,0,1076240988,1 vti_globalpage:BW|true \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_04.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_04.html index 25118e6..87d235a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_04.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_04.html @@ -1,136 +1,136 @@ - - - - - -8086 Assembler Tutorial for Beginners (Part 4) - - - - - - - - - - - - - -
- - - - -8086 Assembler Tutorial for Beginners (Part 4) - - - - - -

- -中断 -
 

中断是一系列功能调用。这些功能调用使得编程更加容易。
-
-比如,你想在打印机上输出一个字符,你只需要简单的调用
-
-中断,它将帮你完成所有的事情。另外还有控制磁盘和其他
-
-硬件工作的中断。我们将这些功能调用称作软件中断。
-
-不同的硬件同样可以触发中断,这些中断称作硬件中断。这里
-
-我们只介绍软件中断(
software interrupts)。
- - 

-

触发一个软件中断,需要使用INT指令,它的使用方式非常简单
- 

-
-INT value -
-
-上面value的取值范围是从 0 -255 (或者0到0ffh),通常我们
-
-使用十六进制。

你也许猜测只有256个中断调用,但是这是不正确的。因为每一
-
-个中断都有子功能。

-

在调用一个中断的子功能之前,需要设置AH寄存器。

-


-每一个中断最多可以拥有256个子功能(于是,我们有
-
-256*256=65536个功能调用)。一般情况下使用AH寄存器,但是
-
-一些情况下可能使用另外的寄存器。通常,其他的寄存器
-
-是用来传递数据和参数的。

-

下面的例子调用了 INT 10h中断0Eh子功能输出字符串‘Hello!'。
-
-这个功能作用是在屏幕上显示一个字符,然后光标进一,如果
-
-需要还滚屏。
- - 

- -
-
#MAKE_COM# ; 生成com文件的指令
-
ORG 100h
-
;我们使用的这个子功能没有返回值,
-;所以我们只用设置就可以了。
-
-MOV AH, 0Eh ; 选择子功能
-
;int 10h/0eh 子功能,输出放在
-;AL寄存器中的ASCII码对应的字符
-
-MOV AL, 'H' ; ASCII码: 72
-INT 10h ; 输出
-
-MOV AL, 'e' ; ASCII 码: 101
-INT 10h ; 输出
-
-MOV AL, 'l' ; ASCII 码: 108
-INT 10h ; 输出
-
-MOV AL, 'l' ; ASCII 码: 108
-INT 10h ; 输出
-
-MOV AL, 'o' ; ASCII 码: 111
-INT 10h ; 输出
-
-MOV AL, '!' ; ASCII 码: 33
-INT 10h ; 输出
-
-RET ; 返回操作系统
-
- -
将上述程序拷贝粘贴到Emu8086代码编辑器,点击

[Compile and Emulate] -按钮,运行!

-

  关于中断更多的知识,请查阅

- -

 支持中断列表 -(list of supported interrupts)
- - 

- -
-
- <<< 上一部分 <<< -     - >>> 下一部分 >>> -
-
- - -
- -
- - -
- - - - - + + + + + +8086 Assembler Tutorial for Beginners (Part 4) + + + + + + + + + + + + + +
+ + + + +8086 Assembler Tutorial for Beginners (Part 4) + + + + + +

+ +中断 +
 

中断是一系列功能调用。这些功能调用使得编程更加容易。
+
+比如,你想在打印机上输出一个字符,你只需要简单的调用
+
+中断,它将帮你完成所有的事情。另外还有控制磁盘和其他
+
+硬件工作的中断。我们将这些功能调用称作软件中断。
+
+不同的硬件同样可以触发中断,这些中断称作硬件中断。这里
+
+我们只介绍软件中断(
software interrupts)。
+ + 

+

触发一个软件中断,需要使用INT指令,它的使用方式非常简单
+ 

+
+INT value +
+
+上面value的取值范围是从 0 +255 (或者0到0ffh),通常我们
+
+使用十六进制。

你也许猜测只有256个中断调用,但是这是不正确的。因为每一
+
+个中断都有子功能。

+

在调用一个中断的子功能之前,需要设置AH寄存器。

+


+每一个中断最多可以拥有256个子功能(于是,我们有
+
+256*256=65536个功能调用)。一般情况下使用AH寄存器,但是
+
+一些情况下可能使用另外的寄存器。通常,其他的寄存器
+
+是用来传递数据和参数的。

+

下面的例子调用了 INT 10h中断0Eh子功能输出字符串‘Hello!'。
+
+这个功能作用是在屏幕上显示一个字符,然后光标进一,如果
+
+需要还滚屏。
+ + 

+ +
+
#MAKE_COM# ; 生成com文件的指令
+
ORG 100h
+
;我们使用的这个子功能没有返回值,
+;所以我们只用设置就可以了。
+
+MOV AH, 0Eh ; 选择子功能
+
;int 10h/0eh 子功能,输出放在
+;AL寄存器中的ASCII码对应的字符
+
+MOV AL, 'H' ; ASCII码: 72
+INT 10h ; 输出
+
+MOV AL, 'e' ; ASCII 码: 101
+INT 10h ; 输出
+
+MOV AL, 'l' ; ASCII 码: 108
+INT 10h ; 输出
+
+MOV AL, 'l' ; ASCII 码: 108
+INT 10h ; 输出
+
+MOV AL, 'o' ; ASCII 码: 111
+INT 10h ; 输出
+
+MOV AL, '!' ; ASCII 码: 33
+INT 10h ; 输出
+
+RET ; 返回操作系统
+
+ +
将上述程序拷贝粘贴到Emu8086代码编辑器,点击

[Compile and Emulate] +按钮,运行!

+

  关于中断更多的知识,请查阅

+ +

 支持中断列表 +(list of supported interrupts)
+ + 

+ +
+
+ <<< 上一部分 <<< +     + >>> 下一部分 >>> +
+
+ + +
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_11.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_11.html index 8b72488..cca9d03 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_11.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_11.html @@ -1,214 +1,214 @@ - - - - - -8086 Assembler Tutorial for Beginners (Part 11) - - - - - - - - - - - - - - - - - -
8086 Assembler Tutorial - for Beginners (Part 11)
-
- 编写你自己的操作系统
-
-
- 通常,计算机启动之后会读取你A:盘第一个512字节扇区(面 0 0 1),
-
- 并存放在0000h:7c00h,然后将控制权交给它。如果读取失败,bios将
-
- 使用第一个硬盘的MBR来完成这个工作。
-
- 这一节教程讲述如何从软盘启动,基本原理与从硬盘启动一样。
-
- 而使用软盘启动有如下优点: -
    -
  • 你可以保证你自己的操作系统不受到其他操作系统的影响
    - (windows dos).
    -
    -
  • -
  • 修改软盘的启动记录很容易.
  • -
-
- 一个简单的从软盘启动的程序:
-
- - - - -
-

-; 建立 BOOT 文件的指令e:
-#MAKE_BOOT#
-
-; 启动区要求读入到 0000:7C00,
-; 通知编译器
-ORG 7C00h
-
-; 将信息地址存入 SI 寄存器:
-LEA SI, msg
-
-; teletype function id:
-MOV AH, 0Eh
-
-print:   MOV AL, [SI]
-         CMP AL, 0
-         JZ done
-         INT 10h   ; print using teletype.
-         INC SI
-         JMP print
-
-; 等待任意键按下
-done:      MOV AH, 0
-           INT 16h
-
-
-; store magic value at 0040h:0072h:
-;   0000h - cold boot.
-;   1234h - warm boot.
-MOV     AX, 0040h
-MOV     DS, AX
-MOV     w.[0072h], 0000h ; cold boot.
-
-JMP	0FFFFh:0000h	 ; reboot!
-
-
-new_line EQU 13, 10
-
-msg DB  'Hello This is My First Boot Program!'
-    DB  new_line, 'Press any key to reboot', 0
-
-
-
-
-
- 将上述例子拷贝到Emu8086源代码编辑器,按下
-
- [compile and emulate]。模拟器将会自动读取
-
- “.boot”文件到000h:7c00h
-
- 你可以像普通程序一样运行上面的例子,也可以使用Virtual 菜单中的
-
- Write 512 bytes at 7C00h to
将其写入一个虚拟软盘(模拟器安装
-
- 目录下的floppy_0文件)Boot Sector, 将你的程序写入一个虚拟软盘
-
- 之后,你可以选择Virtual Drive 菜单中的Boot - from Floppy来从你
-
- 做好的操作系统中启动。
-
-
-
-
- 如果你对这方面感兴趣,你可以将虚拟软盘(FLOPPY_0)或者
-
- ".boot"文件写入一个真正的软盘中,可以用它启动你的计算机。
-
- 我推荐使用 rawwrite for windows ,下载地址:
-
http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm
-
- (最新的版本可以在所有的windows下工作!) -

- 注意.boot 文件的内容不是 ms-dos 兼容的启动区格式
-
- (也就是说你无法在windows或者dos下读写软盘内容,
-
- 除非你重新格式化该软盘),所以不要用它存放数据。实际上,
-
- 无论你使用什么raw-write程序写入,他们都会删除软盘上
-
- 的数据。所以在制作启动盘之前,请确认盘上没有重要信息。
-  
-
".boot"文件被限制只有512字节大小(一个扇区大小)。如果你
-
- 的操作系统超过这个大小,你需要从其他扇区读取信息。你可以
-
- 在Sample目录下找到一个微型的操作系统的很好的例子:
-
- micro-os_loader.asm
-
- - micro-os_kernel.asm
-
-
- 为了建立大一些的操作系统(超过512字节),
-
- 你可以使用‘.bin’文件('File'->'New'中选择‘Bin Templeate’)
-
- 使用模拟器菜单中的"Write .bin file - to floppy...":
-
-
- 你还可以使用这个写‘boot’文件:
-
- - - - -
位于:
-
Cylinder: 0
- Head:0
- Sector: 1
-
- 的扇区是启动扇区!
-
-


-
- 软盘和硬盘的示意图:
-
-
-

-

对于一张1440kb 软盘:
-

-
    -
  • 软盘有2面,有2个磁头;这两个磁头分别位于每一个面(0..1
    -
    -
  • -
  • 每一面有80个磁道(编号 0..79
    -
    -
  • -
  • 每一磁道有18个扇区(1..18
    -
    -
  • -
  • 每一扇区有512字节
    -
    -
  • -
  • 磁盘总容量 2*80*18*512=1,474,560字节
    -
    -
  • -
- 软盘扇区读取使用 INT - 13h / AH = 02h.
-
-
-
-
- <<< 前一部分 <<< -      >>> - 后一部分 >>> -
-
-
-
- - - - + + + + + +8086 Assembler Tutorial for Beginners (Part 11) + + + + + + + + + + + + + + + + + +
8086 Assembler Tutorial + for Beginners (Part 11)
+
+ 编写你自己的操作系统
+
+
+ 通常,计算机启动之后会读取你A:盘第一个512字节扇区(面 0 0 1),
+
+ 并存放在0000h:7c00h,然后将控制权交给它。如果读取失败,bios将
+
+ 使用第一个硬盘的MBR来完成这个工作。
+
+ 这一节教程讲述如何从软盘启动,基本原理与从硬盘启动一样。
+
+ 而使用软盘启动有如下优点: +
    +
  • 你可以保证你自己的操作系统不受到其他操作系统的影响
    + (windows dos).
    +
    +
  • +
  • 修改软盘的启动记录很容易.
  • +
+
+ 一个简单的从软盘启动的程序:
+
+ + + + +
+

+; 建立 BOOT 文件的指令e:
+#MAKE_BOOT#
+
+; 启动区要求读入到 0000:7C00,
+; 通知编译器
+ORG 7C00h
+
+; 将信息地址存入 SI 寄存器:
+LEA SI, msg
+
+; teletype function id:
+MOV AH, 0Eh
+
+print:   MOV AL, [SI]
+         CMP AL, 0
+         JZ done
+         INT 10h   ; print using teletype.
+         INC SI
+         JMP print
+
+; 等待任意键按下
+done:      MOV AH, 0
+           INT 16h
+
+
+; store magic value at 0040h:0072h:
+;   0000h - cold boot.
+;   1234h - warm boot.
+MOV     AX, 0040h
+MOV     DS, AX
+MOV     w.[0072h], 0000h ; cold boot.
+
+JMP	0FFFFh:0000h	 ; reboot!
+
+
+new_line EQU 13, 10
+
+msg DB  'Hello This is My First Boot Program!'
+    DB  new_line, 'Press any key to reboot', 0
+
+
+
+
+
+ 将上述例子拷贝到Emu8086源代码编辑器,按下
+
+ [compile and emulate]。模拟器将会自动读取
+
+ “.boot”文件到000h:7c00h
+
+ 你可以像普通程序一样运行上面的例子,也可以使用Virtual 菜单中的
+
+ Write 512 bytes at 7C00h to
将其写入一个虚拟软盘(模拟器安装
+
+ 目录下的floppy_0文件)Boot Sector, 将你的程序写入一个虚拟软盘
+
+ 之后,你可以选择Virtual Drive 菜单中的Boot + from Floppy来从你
+
+ 做好的操作系统中启动。
+
+
+
+
+ 如果你对这方面感兴趣,你可以将虚拟软盘(FLOPPY_0)或者
+
+ ".boot"文件写入一个真正的软盘中,可以用它启动你的计算机。
+
+ 我推荐使用 rawwrite for windows ,下载地址:
+
http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm
+
+ (最新的版本可以在所有的windows下工作!) +

+ 注意.boot 文件的内容不是 ms-dos 兼容的启动区格式
+
+ (也就是说你无法在windows或者dos下读写软盘内容,
+
+ 除非你重新格式化该软盘),所以不要用它存放数据。实际上,
+
+ 无论你使用什么raw-write程序写入,他们都会删除软盘上
+
+ 的数据。所以在制作启动盘之前,请确认盘上没有重要信息。
+  
+
".boot"文件被限制只有512字节大小(一个扇区大小)。如果你
+
+ 的操作系统超过这个大小,你需要从其他扇区读取信息。你可以
+
+ 在Sample目录下找到一个微型的操作系统的很好的例子:
+
+ micro-os_loader.asm
+
+ + micro-os_kernel.asm
+
+
+ 为了建立大一些的操作系统(超过512字节),
+
+ 你可以使用‘.bin’文件('File'->'New'中选择‘Bin Templeate’)
+
+ 使用模拟器菜单中的"Write .bin file + to floppy...":
+
+
+ 你还可以使用这个写‘boot’文件:
+
+ + + + +
位于:
+
Cylinder: 0
+ Head:0
+ Sector: 1
+
+ 的扇区是启动扇区!
+
+


+
+ 软盘和硬盘的示意图:
+
+
+

+

对于一张1440kb 软盘:
+

+
    +
  • 软盘有2面,有2个磁头;这两个磁头分别位于每一个面(0..1
    +
    +
  • +
  • 每一面有80个磁道(编号 0..79
    +
    +
  • +
  • 每一磁道有18个扇区(1..18
    +
    +
  • +
  • 每一扇区有512字节
    +
    +
  • +
  • 磁盘总容量 2*80*18*512=1,474,560字节
    +
    +
  • +
+ 软盘扇区读取使用 INT + 13h / AH = 02h.
+
+
+
+
+ <<< 前一部分 <<< +      >>> + 后一部分 >>> +
+
+
+
+ + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_13.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_13.html index 0c1f564..037da2a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_13.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/asm_tutorial_13.html @@ -1,65 +1,65 @@ - - - - -8086 Assembler Tutorial for Beginners (Part 13) - - - - - - - - - - - - - - -

- -

- -祝贺你! 你已经学完了基本教程!

- -现在你可以阅读: - - - -If you have any ideas, suggestions, please let us know:
-e-mail: info@emu8086.com -
-Or check for an update here:
-http://www.emu8086.com -
- -

- -
- - - -本帮助由Zoologist翻译,在很多方面不完善,

如果您在阅读上有任何建议请与 -Zoologist@163.net 联系。
- -

- -

- -
-
- <<< 前一部分 <<< -
-
- -
- - - + + + + +8086 Assembler Tutorial for Beginners (Part 13) + + + + + + + + + + + + + + +

+ +

+ +祝贺你! 你已经学完了基本教程!

+ +现在你可以阅读: + + + +If you have any ideas, suggestions, please let us know:
+e-mail: info@emu8086.com +
+Or check for an update here:
+http://www.emu8086.com +
+ +

+ +
+ + + +本帮助由Zoologist翻译,在很多方面不完善,

如果您在阅读上有任何建议请与 +Zoologist@163.net 联系。
+ +

+ +

+ +
+
+ <<< 前一部分 <<< +
+
+ +
+ + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/index.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/index.html index afa0673..75987ef 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/index.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/index.html @@ -1,15 +1,15 @@ - - - - Help for Emu8086 - - - - - - - - - - + + + + Help for Emu8086 + + + + + + + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/menu.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/menu.html index edd1a5a..9081848 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/menu.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/menu.html @@ -1,34 +1,34 @@ - - - - - HELP MENU FOR EMU8086 - - - - - - - - - - - -

- - - - - |  -索引 |  -概述 |  -教程 |  -Emu8086 参考 |  - - - - -

- - + + + + + HELP MENU FOR EMU8086 + + + + + + + + + + + +

+ + + + + |  +索引 |  +概述 |  +教程 |  +Emu8086 参考 |  + + + + +

+ + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/start.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/start.html index cefe7d5..8b96bbb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/start.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/start.html @@ -1,15 +1,15 @@ - - - - Help for Emu8086 - - - - - - - - - - + + + + Help for Emu8086 + + + + + + + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_ReadMe.txt b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_ReadMe.txt index 73e66af..4409d79 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_ReadMe.txt +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_ReadMe.txt @@ -1,6 +1,6 @@ -Open "index.html" in any web browser. - -Internet Explorer 6.0 is recommended, -but any other browser that supports HTML -is also OK. - +Open "index.html" in any web browser. + +Internet Explorer 6.0 is recommended, +but any other browser that supports HTML +is also OK. + diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/8086_instruction_set.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/8086_instruction_set.html index de96c34..8bc614b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/8086_instruction_set.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/8086_instruction_set.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|15 Jul 2003 02:36:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|8086_instruction_set.html asm_tutorial_13.html reference.html help.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|15 Jul 2003 02:36:00 -0000 -vti_cacheddtm:TX|15 Jul 2003 02:36:00 -0000 -vti_filesize:IR|92205 -vti_cachedtitle:SR|8086 instructions -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html H|asm_tutorial_02.html H|asm_tutorial_07.html H|../Samples/cmpsb.asm H|../Samples/cmpsw.asm H|../Samples/cmpsb.asm H|http://www.emu8086.com -vti_cachedsvcrellinks:VX|FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_07.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsw.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHHS|http://www.emu8086.com -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Complete\\ 8086\\ instruction\\ set keywords 8086,\\ instruction,\\ set,\\ complete\\ instruction\\ set,\\ example,\\ mov,\\ add,\\ inc,\\ sub,\\ xor,\\ xchg robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|8086 instructions -vti_lineageid:SR|{50C5BAE1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|15 Jul 2003 02:36:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|8086_instruction_set.html asm_tutorial_13.html reference.html help.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|15 Jul 2003 02:36:00 -0000 +vti_cacheddtm:TX|15 Jul 2003 02:36:00 -0000 +vti_filesize:IR|92205 +vti_cachedtitle:SR|8086 instructions +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html K|8086_instruction_set.html H|asm_tutorial_02.html H|asm_tutorial_07.html H|../Samples/cmpsb.asm H|../Samples/cmpsw.asm H|../Samples/cmpsb.asm H|http://www.emu8086.com +vti_cachedsvcrellinks:VX|FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FKUS|8086_instruction_set.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_07.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsw.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/cmpsb.asm NHHS|http://www.emu8086.com +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Complete\\ 8086\\ instruction\\ set keywords 8086,\\ instruction,\\ set,\\ complete\\ instruction\\ set,\\ example,\\ mov,\\ add,\\ inc,\\ sub,\\ xor,\\ xchg robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|8086 instructions +vti_lineageid:SR|{50C5BAE1-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/addressing_mode.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/addressing_mode.gif index 3bd7063..f3919b8 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/addressing_mode.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/addressing_mode.gif @@ -1,13 +1,13 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_lineageid:SR|{50C5BAE2-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|661 -vti_lastwidth:IX|165 -vti_lastheight:IX|76 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_lineageid:SR|{50C5BAE2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|661 +vti_lastwidth:IX|165 +vti_lastheight:IX|76 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/array.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/array.gif index e331f80..11d985b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/array.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/array.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2371 -vti_lineageid:SR|{50C5BAE3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2371 +vti_lineageid:SR|{50C5BAE3-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_01.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_01.html index ad0e9eb..1261948 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_01.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_01.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:07:32 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_02.html numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 1) -vti_lineageid:SR|{71BE6501-5B3F-11D8-BBBF-B403AC82C275} -vti_nexttolasttimemodified:TW|09 Feb 2004 13:07:15 -0000 -vti_cacheddtm:TX|09 Feb 2004 13:07:32 -0000 -vti_filesize:IR|5474 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 1) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html S|model.gif S|cpu.gif S|effective_address.gif H|asm_tutorial_02.html -vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FSUS|model.gif FSUS|cpu.gif FSUS|effective_address.gif FHUS|asm_tutorial_02.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description What\\ is\\ an\\ assembly\\ language? keywords emu8086,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:07:32 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_02.html numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 1) +vti_lineageid:SR|{71BE6501-5B3F-11D8-BBBF-B403AC82C275} +vti_nexttolasttimemodified:TW|09 Feb 2004 13:07:15 -0000 +vti_cacheddtm:TX|09 Feb 2004 13:07:32 -0000 +vti_filesize:IR|5474 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 1) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html S|model.gif S|cpu.gif S|effective_address.gif H|asm_tutorial_02.html +vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FSUS|model.gif FSUS|cpu.gif FSUS|effective_address.gif FHUS|asm_tutorial_02.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description What\\ is\\ an\\ assembly\\ language? keywords emu8086,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_02.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_02.html index 89569c0..c47bdf1 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_02.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_02.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|11 Feb 2004 02:59:59 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_01.html asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 2) -vti_lineageid:SR|{01D67A63-5BAE-11D8-BBBF-BB658297DC7D} -vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|11 Feb 2004 02:59:58 -0000 -vti_filesize:IR|6838 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 2) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|addressing_mode.gif S|screen01.gif H|asm_tutorial_01.html H|asm_tutorial_03.html -vti_cachedsvcrellinks:VX|FSUS|addressing_mode.gif FSUS|screen01.gif FHUS|asm_tutorial_01.html FHUS|asm_tutorial_03.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Memory\\ Access\\ using\\ 8086\\ Assembler keywords memory\\ access,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|11 Feb 2004 02:59:59 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_01.html asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 2) +vti_lineageid:SR|{01D67A63-5BAE-11D8-BBBF-BB658297DC7D} +vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|11 Feb 2004 02:59:58 -0000 +vti_filesize:IR|6838 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 2) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|addressing_mode.gif S|screen01.gif H|asm_tutorial_01.html H|asm_tutorial_03.html +vti_cachedsvcrellinks:VX|FSUS|addressing_mode.gif FSUS|screen01.gif FHUS|asm_tutorial_01.html FHUS|asm_tutorial_03.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Memory\\ Access\\ using\\ 8086\\ Assembler keywords memory\\ access,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_03.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_03.html index 513355c..27574e1 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_03.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_03.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|13 Feb 2004 01:52:20 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 3) -vti_lineageid:SR|{50C5BAC3-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|13 Feb 2004 01:50:10 -0000 -vti_cacheddtm:TX|13 Feb 2004 01:52:20 -0000 -vti_filesize:IR|10224 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 3) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|tut3a.gif S|array.gif S|varview.gif H|asm_tutorial_02.html H|asm_tutorial_04.html -vti_cachedsvcrellinks:VX|FSUS|tut3a.gif FSUS|array.gif FSUS|varview.gif FHUS|asm_tutorial_02.html FHUS|asm_tutorial_04.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Variables\\ -\\ 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords variables,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|13 Feb 2004 01:52:20 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 3) +vti_lineageid:SR|{50C5BAC3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|13 Feb 2004 01:50:10 -0000 +vti_cacheddtm:TX|13 Feb 2004 01:52:20 -0000 +vti_filesize:IR|10224 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 3) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|tut3a.gif S|array.gif S|varview.gif H|asm_tutorial_02.html H|asm_tutorial_04.html +vti_cachedsvcrellinks:VX|FSUS|tut3a.gif FSUS|array.gif FSUS|varview.gif FHUS|asm_tutorial_02.html FHUS|asm_tutorial_04.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Variables\\ -\\ 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords variables,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_04.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_04.html index c6a4311..ccd6c9f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_04.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_04.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|19 Feb 2004 04:48:50 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 4) -vti_lineageid:SR|{50C5BAE4-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|19 Feb 2004 04:48:07 -0000 -vti_cacheddtm:TX|19 Feb 2004 04:48:50 -0000 -vti_filesize:IR|3663 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 4) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|supported_interrupts.html H|asm_tutorial_03.html H|asm_tutorial_05.html -vti_cachedsvcrellinks:VX|FHUS|supported_interrupts.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_05.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Interrupts\\ -\\ 8086\\ Assembler keywords interrupts,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|19 Feb 2004 04:48:50 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 4) +vti_lineageid:SR|{50C5BAE4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|19 Feb 2004 04:48:07 -0000 +vti_cacheddtm:TX|19 Feb 2004 04:48:50 -0000 +vti_filesize:IR|3663 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 4) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|supported_interrupts.html H|asm_tutorial_03.html H|asm_tutorial_05.html +vti_cachedsvcrellinks:VX|FHUS|supported_interrupts.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_05.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Interrupts\\ -\\ 8086\\ Assembler keywords interrupts,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_05.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_05.html index 8fe3a75..89343d7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_05.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_05.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|19 Feb 2004 05:09:24 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_06.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 5) -vti_lineageid:SR|{50C5BAE5-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|19 Feb 2004 05:06:53 -0000 -vti_cacheddtm:TX|19 Feb 2004 05:09:24 -0000 -vti_filesize:IR|6513 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 5) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_04.html H|asm_tutorial_06.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_04.html FHUS|asm_tutorial_06.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Library\\ of\\ common\\ functions\\ -\\ emu8086.inc keywords common\\ functions,\\ emu8086.inc,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|19 Feb 2004 05:09:24 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_04.html asm_tutorial_06.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 5) +vti_lineageid:SR|{50C5BAE5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|19 Feb 2004 05:06:53 -0000 +vti_cacheddtm:TX|19 Feb 2004 05:09:24 -0000 +vti_filesize:IR|6513 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 5) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_04.html H|asm_tutorial_06.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_04.html FHUS|asm_tutorial_06.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Library\\ of\\ common\\ functions\\ -\\ emu8086.inc keywords common\\ functions,\\ emu8086.inc,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_06.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_06.html index e871a02..1c97b90 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_06.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_06.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|20 Feb 2004 05:35:14 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_07.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 6) -vti_lineageid:SR|{50C5BAE6-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|20 Feb 2004 05:35:00 -0000 -vti_cacheddtm:TX|20 Feb 2004 05:35:14 -0000 -vti_filesize:IR|9323 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 6) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|flags.gif H|asm_tutorial_05.html H|asm_tutorial_07.html -vti_cachedsvcrellinks:VX|FSUS|flags.gif FHUS|asm_tutorial_05.html FHUS|asm_tutorial_07.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Arithmetic\\ and\\ Logic\\ Instructions keywords arithmetic,\\ logic,\\ instructions,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|20 Feb 2004 05:35:14 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_05.html asm_tutorial_07.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 6) +vti_lineageid:SR|{50C5BAE6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|20 Feb 2004 05:35:00 -0000 +vti_cacheddtm:TX|20 Feb 2004 05:35:14 -0000 +vti_filesize:IR|9323 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 6) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|flags.gif H|asm_tutorial_05.html H|asm_tutorial_07.html +vti_cachedsvcrellinks:VX|FSUS|flags.gif FHUS|asm_tutorial_05.html FHUS|asm_tutorial_07.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Arithmetic\\ and\\ Logic\\ Instructions keywords arithmetic,\\ logic,\\ instructions,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_07.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_07.html index 912251c..a78c86f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_07.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_07.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|20 Feb 2004 06:08:15 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_08.html asm_tutorial_06.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 7) -vti_lineageid:SR|{50C5BAE7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|20 Feb 2004 06:07:37 -0000 -vti_cacheddtm:TX|20 Feb 2004 06:08:14 -0000 -vti_filesize:IR|9908 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 7) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_06.html H|asm_tutorial_08.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_06.html FHUS|asm_tutorial_08.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Program\\ Flow\\ Control\\ -\\ Tutorial\\ for\\ Beginners keywords program\\ flow\\ control,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|20 Feb 2004 06:08:15 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html 8086_instruction_set.html asm_tutorial_08.html asm_tutorial_06.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 7) +vti_lineageid:SR|{50C5BAE7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|20 Feb 2004 06:07:37 -0000 +vti_cacheddtm:TX|20 Feb 2004 06:08:14 -0000 +vti_filesize:IR|9908 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 7) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_06.html H|asm_tutorial_08.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_06.html FHUS|asm_tutorial_08.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Program\\ Flow\\ Control\\ -\\ Tutorial\\ for\\ Beginners keywords program\\ flow\\ control,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_08.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_08.html index 98dd97f..01a0e42 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_08.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_08.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_07.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4903 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 8) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_07.html H|asm_tutorial_09.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_07.html FHUS|asm_tutorial_09.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Procedures\\ -\\ Tutorial\\ for\\ Beginners keywords procedures,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 8) -vti_lineageid:SR|{50C5BAE8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_07.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4903 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 8) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_07.html H|asm_tutorial_09.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_07.html FHUS|asm_tutorial_09.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Procedures\\ -\\ Tutorial\\ for\\ Beginners keywords procedures,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 8) +vti_lineageid:SR|{50C5BAE8-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_09.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_09.html index 0346766..75fbb5e 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_09.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_09.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:04:54 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_08.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|06 Feb 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 9) -vti_lineageid:SR|{50C5BAE9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|21 Feb 2004 02:00:13 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:04:54 -0000 -vti_filesize:IR|5237 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 9) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|stack.gif H|asm_tutorial_08.html H|asm_tutorial_10.html -vti_cachedsvcrellinks:VX|FSUS|stack.gif FHUS|asm_tutorial_08.html FHUS|asm_tutorial_10.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description The\\ Stack\\ -\\ Tutorial\\ for\\ Beginners keywords stack,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:04:54 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_08.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|06 Feb 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 9) +vti_lineageid:SR|{50C5BAE9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|21 Feb 2004 02:00:13 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:04:54 -0000 +vti_filesize:IR|5237 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 9) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|stack.gif H|asm_tutorial_08.html H|asm_tutorial_10.html +vti_cachedsvcrellinks:VX|FSUS|stack.gif FHUS|asm_tutorial_08.html FHUS|asm_tutorial_10.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description The\\ Stack\\ -\\ Tutorial\\ for\\ Beginners keywords stack,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_10.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_10.html index fb0a251..40ba959 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_10.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_10.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:12:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_11.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 10) -vti_lineageid:SR|{50C5BAEA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:12:08 -0000 -vti_filesize:IR|4250 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 10) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|asm_tutorial_05.html H|asm_tutorial_05.html H|asm_tutorial_09.html H|asm_tutorial_11.html -vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_05.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_11.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Macros\\ for\\ 8086\\ Assembler keywords macros,\\ 8086,\\ procedures,\\ tutorial,\\ programming robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:12:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_09.html asm_tutorial_11.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 10) +vti_lineageid:SR|{50C5BAEA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:12:08 -0000 +vti_filesize:IR|4250 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 10) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|asm_tutorial_05.html H|asm_tutorial_05.html H|asm_tutorial_09.html H|asm_tutorial_11.html +vti_cachedsvcrellinks:VX|FHUS|asm_tutorial_05.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_11.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Macros\\ for\\ 8086\\ Assembler keywords macros,\\ 8086,\\ procedures,\\ tutorial,\\ programming robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_11.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_11.html index 6ed005c..2dcf655 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_11.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_11.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:29:57 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_12.html asm_tutorial_10.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 11) -vti_lineageid:SR|{50C5BAEB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|21 Feb 2004 02:29:52 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:29:56 -0000 -vti_filesize:IR|6141 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 11) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm H|../Samples/micro-os_loader.asm H|../Samples/micro-os_kernel.asm S|write_bin.gif S|floppy.gif K|supported_interrupts.html H|asm_tutorial_10.html H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_loader.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_kernel.asm FSUS|write_bin.gif FSUS|floppy.gif FHUS|supported_interrupts.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Making\\ your\\ own\\ Operating\\ System keywords operating\\ system,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:29:57 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_12.html asm_tutorial_10.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 11) +vti_lineageid:SR|{50C5BAEB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|21 Feb 2004 02:29:52 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:29:56 -0000 +vti_filesize:IR|6141 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 11) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm H|../Samples/micro-os_loader.asm H|../Samples/micro-os_kernel.asm S|write_bin.gif S|floppy.gif K|supported_interrupts.html H|asm_tutorial_10.html H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_loader.asm NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/micro-os_kernel.asm FSUS|write_bin.gif FSUS|floppy.gif FHUS|supported_interrupts.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Making\\ your\\ own\\ Operating\\ System keywords operating\\ system,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_12.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_12.html index ac6d695..ac001d6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_12.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_12.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:36:07 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_13.html asm_tutorial_11.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 12) -vti_lineageid:SR|{50C5BAEC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:36:06 -0000 -vti_filesize:IR|3599 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 12) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|io.html S|traffic.gif S|stepper.gif H|../Samples/stepper_motor.asm H|io.html S|robot.gif H|io.html H|../Samples/robot.asm H|asm_tutorial_11.html H|asm_tutorial_13.html -vti_cachedsvcrellinks:VX|FHUS|io.html FSUS|traffic.gif FSUS|stepper.gif NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/stepper_motor.asm FHUS|io.html FSUS|robot.gif FHUS|io.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/robot.asm FHUS|asm_tutorial_11.html FHUS|asm_tutorial_13.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Controlling\\ External\\ Devices keywords external,\\ devices,\\ 8086,\\ traffic\\ lights,\\ stepper\\ motor,\\ robot robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:36:07 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_13.html asm_tutorial_11.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 12) +vti_lineageid:SR|{50C5BAEC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:36:06 -0000 +vti_filesize:IR|3599 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 12) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|io.html S|traffic.gif S|stepper.gif H|../Samples/stepper_motor.asm H|io.html S|robot.gif H|io.html H|../Samples/robot.asm H|asm_tutorial_11.html H|asm_tutorial_13.html +vti_cachedsvcrellinks:VX|FHUS|io.html FSUS|traffic.gif FSUS|stepper.gif NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/stepper_motor.asm FHUS|io.html FSUS|robot.gif FHUS|io.html NHUS|file:///C:/My\\ Documents/My\\ Webs/myweb3/emu8088/Samples/robot.asm FHUS|asm_tutorial_11.html FHUS|asm_tutorial_13.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Controlling\\ External\\ Devices keywords external,\\ devices,\\ 8086,\\ traffic\\ lights,\\ stepper\\ motor,\\ robot robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_13.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_13.html index d7c2cbc..49300e3 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_13.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/asm_tutorial_13.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|21 Feb 2004 02:38:14 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|01 Aug 2003 15:26:28 -0000 -vti_title:SR|8086 Assembler Tutorial for Beginners (Part 13) -vti_lineageid:SR|{50C5BAC7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html -vti_nexttolasttimemodified:TW|01 Aug 2003 15:26:28 -0000 -vti_cacheddtm:TX|21 Feb 2004 02:38:14 -0000 -vti_filesize:IR|1191 -vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 13) -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|8086_instruction_set.html H|mailto:info@emu8086.com H|http://www.emu8086.com H|mailto:Zoologist@163.net H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|FHUS|8086_instruction_set.html NHUS|mailto:info@emu8086.com NHHS|http://www.emu8086.com NHUS|mailto:Zoologist@163.net FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Congratulations!\\ 8086\\ Assembler\\ Tutorial\\ Completed! keywords 8086\\ tutorial robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|21 Feb 2004 02:38:14 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|01 Aug 2003 15:26:28 -0000 +vti_title:SR|8086 Assembler Tutorial for Beginners (Part 13) +vti_lineageid:SR|{50C5BAC7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html +vti_nexttolasttimemodified:TW|01 Aug 2003 15:26:28 -0000 +vti_cacheddtm:TX|21 Feb 2004 02:38:14 -0000 +vti_filesize:IR|1191 +vti_cachedtitle:SR|8086 Assembler Tutorial for Beginners (Part 13) +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|8086_instruction_set.html H|mailto:info@emu8086.com H|http://www.emu8086.com H|mailto:Zoologist@163.net H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|FHUS|8086_instruction_set.html NHUS|mailto:info@emu8086.com NHHS|http://www.emu8086.com NHUS|mailto:Zoologist@163.net FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Congratulations!\\ 8086\\ Assembler\\ Tutorial\\ Completed! keywords 8086\\ tutorial robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buy2.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buy2.gif index c975cd3..3c97930 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buy2.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buy2.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 -vti_filesize:IR|1265 -vti_lineageid:SR|{50C5BAC8-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 +vti_filesize:IR|1265 +vti_lineageid:SR|{50C5BAC8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buynow.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buynow.gif index 42c42ee..6058cba 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buynow.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/buynow.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 -vti_filesize:IR|482 -vti_lineageid:SR|{50C5BAC9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|22 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|22 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|22 Jun 2003 16:00:00 -0000 +vti_filesize:IR|482 +vti_lineageid:SR|{50C5BAC9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compatibility.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compatibility.html index ff54cc1..ad4d573 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compatibility.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compatibility.html @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|4141 -vti_cachedtitle:SR|MASM / TASM compatibility -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description MASM\\ /\\ TASM\\ compatibility keywords MASM,\\ TASM,\\ compatibility -vti_charset:SR|gb2312 -vti_title:SR|MASM / TASM compatibility -vti_lineageid:SR|{50C5BACA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|4141 +vti_cachedtitle:SR|MASM / TASM compatibility +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description MASM\\ /\\ TASM\\ compatibility keywords MASM,\\ TASM,\\ compatibility +vti_charset:SR|gb2312 +vti_title:SR|MASM / TASM compatibility +vti_lineageid:SR|{50C5BACA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile01.gif index e2df2e2..2a6f3bc 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile01.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:43:16 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:43:16 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:43:16 -0000 -vti_filesize:IR|13863 -vti_lineageid:SR|{50C5BACB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|compiler.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:43:16 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:43:16 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:43:16 -0000 +vti_filesize:IR|13863 +vti_lineageid:SR|{50C5BACB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|compiler.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile03.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile03.gif index 11d33ad..e861e28 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile03.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compile03.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10221 -vti_lineageid:SR|{50C5BACC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|compiler.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10221 +vti_lineageid:SR|{50C5BACC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|compiler.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compiler.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compiler.html index 8513aee..a4dff07 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compiler.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/compiler.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:43:58 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:43:58 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:43:58 -0000 -vti_filesize:IR|9431 -vti_cachedtitle:SR|Compiling Assembly Code -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|compile01.gif H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm S|compile03.gif -vti_cachedsvcrellinks:VX|FSUS|compile01.gif NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm FSUS|compile03.gif -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Compiling\\ Assembly\\ Code keywords compiler,\\ reference,\\ description,\\ hints -vti_charset:SR|gb2312 -vti_title:SR|Compiling Assembly Code -vti_lineageid:SR|{50C5BACD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:43:58 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:43:58 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:43:58 -0000 +vti_filesize:IR|9431 +vti_cachedtitle:SR|Compiling Assembly Code +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|compile01.gif H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm S|compile03.gif +vti_cachedsvcrellinks:VX|FSUS|compile01.gif NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm FSUS|compile03.gif +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Compiling\\ Assembly\\ Code keywords compiler,\\ reference,\\ description,\\ hints +vti_charset:SR|gb2312 +vti_title:SR|Compiling Assembly Code +vti_lineageid:SR|{50C5BACD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/cpu.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/cpu.gif index 6457988..6b0d048 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/cpu.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/cpu.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|7219 -vti_lineageid:SR|{50C5BAED-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|7219 +vti_lineageid:SR|{50C5BAED-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/custom_memory_map.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/custom_memory_map.html index 732ea78..c92d69e 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/custom_memory_map.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/custom_memory_map.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|2175 -vti_cachedtitle:SR|Custom Memory Map -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|memory.html -vti_cachedsvcrellinks:VX|FHUS|memory.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Custom\\ Memory\\ Map keywords custom\\ memory\\ map,\\ assembly,\\ 8086\\ assembler,\\ reference,\\ description,\\ 80186 robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Custom Memory Map -vti_lineageid:SR|{50C5BACE-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|2175 +vti_cachedtitle:SR|Custom Memory Map +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|memory.html +vti_cachedsvcrellinks:VX|FHUS|memory.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Custom\\ Memory\\ Map keywords custom\\ memory\\ map,\\ assembly,\\ 8086\\ assembler,\\ reference,\\ description,\\ 80186 robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Custom Memory Map +vti_lineageid:SR|{50C5BACE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/editor.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/editor.html index 8acf2ec..e2aa263 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/editor.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/editor.html @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|5863 -vti_cachedtitle:SR|Editor -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Source\\ Code\\ Editor keywords source,\\ code,\\ editor robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Editor -vti_lineageid:SR|{50C5BACF-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|5863 +vti_cachedtitle:SR|Editor +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Source\\ Code\\ Editor keywords source,\\ code,\\ editor robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Editor +vti_lineageid:SR|{50C5BACF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/effective_address.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/effective_address.gif index d11c1f0..37f0889 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/effective_address.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/effective_address.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|308 -vti_lineageid:SR|{50C5BAEE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|308 +vti_lineageid:SR|{50C5BAEE-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator.html index 8683988..e297a56 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:54:44 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:54:44 -0000 -vti_cacheddtm:TX|11 Feb 2004 02:59:24 -0000 -vti_filesize:IR|5085 -vti_cachedtitle:SR|Using Emulator -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|emulator01.gif S|emulator02.gif S|emulator03.gif H|supported_interrupts.html H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm -vti_cachedsvcrellinks:VX|FSUS|emulator01.gif FSUS|emulator02.gif FSUS|emulator03.gif FHUS|supported_interrupts.html NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Using\\ Emulator keywords using\\ emulator,\\ simulator,\\ reference,\\ description,\\ hints robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Using Emulator -vti_lineageid:SR|{50C5BAD0-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:54:44 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:54:44 -0000 +vti_cacheddtm:TX|11 Feb 2004 02:59:24 -0000 +vti_filesize:IR|5085 +vti_cachedtitle:SR|Using Emulator +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|emulator01.gif S|emulator02.gif S|emulator03.gif H|supported_interrupts.html H|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm +vti_cachedsvcrellinks:VX|FSUS|emulator01.gif FSUS|emulator02.gif FSUS|emulator03.gif FHUS|supported_interrupts.html NHHS|http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Using\\ Emulator keywords using\\ emulator,\\ simulator,\\ reference,\\ description,\\ hints robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Using Emulator +vti_lineageid:SR|{50C5BAD0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator01.gif index fd035a1..11ffe53 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator01.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|30 Jul 2003 03:54:06 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|30 Jul 2003 03:54:06 -0000 -vti_cacheddtm:TX|30 Jul 2003 03:54:06 -0000 -vti_filesize:IR|114 -vti_lineageid:SR|{50C5BAD1-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|30 Jul 2003 03:54:06 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|30 Jul 2003 03:54:06 -0000 +vti_cacheddtm:TX|30 Jul 2003 03:54:06 -0000 +vti_filesize:IR|114 +vti_lineageid:SR|{50C5BAD1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator02.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator02.gif index 9168b77..e60927b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator02.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator02.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|31 Jul 2003 07:47:36 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|31 Jul 2003 07:47:36 -0000 -vti_cacheddtm:TX|31 Jul 2003 07:47:36 -0000 -vti_filesize:IR|21052 -vti_lineageid:SR|{50C5BAD2-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|31 Jul 2003 07:47:36 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|31 Jul 2003 07:47:36 -0000 +vti_cacheddtm:TX|31 Jul 2003 07:47:36 -0000 +vti_filesize:IR|21052 +vti_lineageid:SR|{50C5BAD2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator03.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator03.gif index 90fa9fe..c220cec 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator03.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/emulator03.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|31 Jul 2003 07:51:54 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|31 Jul 2003 07:51:54 -0000 -vti_cacheddtm:TX|31 Jul 2003 07:51:54 -0000 -vti_filesize:IR|22312 -vti_lineageid:SR|{50C5BAD3-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|emulator.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|31 Jul 2003 07:51:54 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|31 Jul 2003 07:51:54 -0000 +vti_cacheddtm:TX|31 Jul 2003 07:51:54 -0000 +vti_filesize:IR|22312 +vti_lineageid:SR|{50C5BAD3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|emulator.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/flags.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/flags.gif index ee39a56..587bb7b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/flags.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/flags.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1967 -vti_lineageid:SR|{50C5BAD4-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_06.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1967 +vti_lineageid:SR|{50C5BAD4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_06.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/floppy.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/floppy.gif index 44d554d..2fca084 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/floppy.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/floppy.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|5489 -vti_lineageid:SR|{50C5BAD5-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_11.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|5489 +vti_lineageid:SR|{50C5BAD5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_11.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/help.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/help.html index 8476c3d..d208f30 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/help.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/help.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:40:10 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html index.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|12 Jul 2003 07:11:04 -0000 -vti_title:SR|Documentation for Emu8086 -vti_lineageid:SR|{E4C0B80B-5A6D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 13:34:09 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:40:10 -0000 -vti_filesize:IR|1388 -vti_cachedtitle:SR|Documentation for Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|start_unframed.html H|tutorials.html H|reference.html H|8086_instruction_set.html -vti_cachedsvcrellinks:VX|FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html FHUS|8086_instruction_set.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description 8086\\ Assembler\\ Reference\\ and\\ Tutorials keywords Emu8086,\\ assembler,\\ 8086,\\ tutorial,\\ emulator,\\ cpu,\\ disassembler,\\ simulator,\\ virtual\\ pc,\\ emulation\\ software,\\ 80186,\\ debugger -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:40:10 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html index.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|12 Jul 2003 07:11:04 -0000 +vti_title:SR|Documentation for Emu8086 +vti_lineageid:SR|{E4C0B80B-5A6D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 13:34:09 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:40:10 -0000 +vti_filesize:IR|1388 +vti_cachedtitle:SR|Documentation for Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|start_unframed.html H|tutorials.html H|reference.html H|8086_instruction_set.html +vti_cachedsvcrellinks:VX|FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html FHUS|8086_instruction_set.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description 8086\\ Assembler\\ Reference\\ and\\ Tutorials keywords Emu8086,\\ assembler,\\ 8086,\\ tutorial,\\ emulator,\\ cpu,\\ disassembler,\\ simulator,\\ virtual\\ pc,\\ emulation\\ software,\\ 80186,\\ debugger +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/index.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/index.html index da76ccb..8a2810b 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/index.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/index.html @@ -1,24 +1,24 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:13:30 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|Help for Emu8086 -vti_lineageid:SR|{E4C0B809-5A6D-11D8-BBBF-A878AF7FD375} -vti_backlinkinfo:VX|index.htm -vti_nexttolasttimemodified:TW|09 Feb 2004 13:13:17 -0000 -vti_editor:SW|FrontPage Frames Wizard -vti_cacheddtm:TX|09 Feb 2004 13:13:30 -0000 -vti_filesize:IR|336 -vti_cachedtitle:SR|Help for Emu8086 -vti_cachedlinkinfo:VX|F|menu.html F|help.html -vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|help.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 -vti_charset:SR|gb2312 -vti_generator:SR|Microsoft FrontPage 5.0 -vti_hasframeset:BR|true +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:13:30 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|Help for Emu8086 +vti_lineageid:SR|{E4C0B809-5A6D-11D8-BBBF-A878AF7FD375} +vti_backlinkinfo:VX|index.htm +vti_nexttolasttimemodified:TW|09 Feb 2004 13:13:17 -0000 +vti_editor:SW|FrontPage Frames Wizard +vti_cacheddtm:TX|09 Feb 2004 13:13:30 -0000 +vti_filesize:IR|336 +vti_cachedtitle:SR|Help for Emu8086 +vti_cachedlinkinfo:VX|F|menu.html F|help.html +vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|help.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 +vti_charset:SR|gb2312 +vti_generator:SR|Microsoft FrontPage 5.0 +vti_hasframeset:BR|true diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/io.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/io.html index c8dc49b..47c77ee 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/io.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/io.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|05 Jun 2003 16:00:00 -0000 -vti_filesize:IR|9256 -vti_cachedtitle:SR|I/O ports -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|mailto:info@emu8086.com S|traffic.gif S|stepper.gif S|robot.gif -vti_cachedsvcrellinks:VX|NHUS|mailto:info@emu8086.com FSUS|traffic.gif FSUS|stepper.gif FSUS|robot.gif -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Simulation\\ of\\ I/O\\ ports\\ of\\ IBM\\ PC keywords i/o\\ ports,\\ direct\\ io,\\ port robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|I/O ports -vti_lineageid:SR|{50C5BAD6-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html reference.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|05 Jun 2003 16:00:00 -0000 +vti_filesize:IR|9256 +vti_cachedtitle:SR|I/O ports +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|mailto:info@emu8086.com S|traffic.gif S|stepper.gif S|robot.gif +vti_cachedsvcrellinks:VX|NHUS|mailto:info@emu8086.com FSUS|traffic.gif FSUS|stepper.gif FSUS|robot.gif +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Simulation\\ of\\ I/O\\ ports\\ of\\ IBM\\ PC keywords i/o\\ ports,\\ direct\\ io,\\ port robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|I/O ports +vti_lineageid:SR|{50C5BAD6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html reference.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/lock.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/lock.gif index 1379b36..6bec989 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/lock.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/lock.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|118 -vti_lineageid:SR|{50C5BAD7-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|118 +vti_lineageid:SR|{50C5BAD7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/memory.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/memory.html index be37b14..c2a3692 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/memory.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/memory.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 -vti_filesize:IR|7749 -vti_cachedtitle:SR|Global Memory Table -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|memory.html H|supported_interrupts.html H|custom_memory_map.html -vti_cachedsvcrellinks:VX|FKUS|memory.html FHUS|supported_interrupts.html FHUS|custom_memory_map.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Global\\ Memory\\ Table keywords global,\\ memory,\\ table robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Global Memory Table -vti_lineageid:SR|{50C5BAD8-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html reference.html custom_memory_map.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|07 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|07 Aug 2002 16:00:00 -0000 +vti_filesize:IR|7749 +vti_cachedtitle:SR|Global Memory Table +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|memory.html H|supported_interrupts.html H|custom_memory_map.html +vti_cachedsvcrellinks:VX|FKUS|memory.html FHUS|supported_interrupts.html FHUS|custom_memory_map.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Global\\ Memory\\ Table keywords global,\\ memory,\\ table robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Global Memory Table +vti_lineageid:SR|{50C5BAD8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html reference.html custom_memory_map.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/menu.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/menu.html index 1ee527f..9703cf9 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/menu.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/menu.html @@ -1,23 +1,23 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|09 Feb 2004 13:13:17 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|emu8088/translate/index.html index.html start.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|12 Jul 2003 03:50:18 -0000 -vti_title:SR|HELP MENU FOR EMU8086 -vti_lineageid:SR|{E4C0B80A-5A6D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|09 Feb 2004 04:18:37 -0000 -vti_cacheddtm:TX|09 Feb 2004 13:13:16 -0000 -vti_filesize:IR|743 -vti_cachedtitle:SR|HELP MENU FOR EMU8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|help.html H|start_unframed.html H|tutorials.html H|reference.html -vti_cachedsvcrellinks:VX|FHUS|help.html FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 description Just\\ a\\ menu keywords download\\ 8086 robots nofollow -vti_charset:SR|gb2312 -vti_generator:SR|Microsoft FrontPage 5.0 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|09 Feb 2004 13:13:17 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|emu8088/translate/index.html index.html start.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|12 Jul 2003 03:50:18 -0000 +vti_title:SR|HELP MENU FOR EMU8086 +vti_lineageid:SR|{E4C0B80A-5A6D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|09 Feb 2004 04:18:37 -0000 +vti_cacheddtm:TX|09 Feb 2004 13:13:16 -0000 +vti_filesize:IR|743 +vti_cachedtitle:SR|HELP MENU FOR EMU8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|help.html H|start_unframed.html H|tutorials.html H|reference.html +vti_cachedsvcrellinks:VX|FHUS|help.html FHUS|start_unframed.html FHUS|tutorials.html FHUS|reference.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Microsoft\\ FrontPage\\ 5.0 description Just\\ a\\ menu keywords download\\ 8086 robots nofollow +vti_charset:SR|gb2312 +vti_generator:SR|Microsoft FrontPage 5.0 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/model.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/model.gif index 63ba889..4f1996d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/model.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/model.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_01.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2960 -vti_lineageid:SR|{50C5BAEF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_01.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2960 +vti_lineageid:SR|{50C5BAEF-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num1.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num1.gif index f0a0e32..8073e0c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num1.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num1.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1562 -vti_lineageid:SR|{50C5BAF0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1562 +vti_lineageid:SR|{50C5BAF0-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num10.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num10.gif index 3e25a73..7701c86 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num10.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num10.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|840 -vti_lineageid:SR|{50C5BAF1-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|840 +vti_lineageid:SR|{50C5BAF1-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num11.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num11.gif index d89fcdc..f25efe7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num11.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num11.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1887 -vti_lineageid:SR|{50C5BAF2-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1887 +vti_lineageid:SR|{50C5BAF2-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num12.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num12.gif index d25cc76..bb1b305 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num12.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num12.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10694 -vti_lineageid:SR|{50C5BAF3-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10694 +vti_lineageid:SR|{50C5BAF3-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num2.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num2.gif index 2cbd964..23ea8f6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num2.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num2.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1567 -vti_lineageid:SR|{50C5BAF4-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1567 +vti_lineageid:SR|{50C5BAF4-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num3.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num3.gif index 1d08c45..c78fefb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num3.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num3.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|642 -vti_lineageid:SR|{50C5BAF5-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|642 +vti_lineageid:SR|{50C5BAF5-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num4.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num4.gif index 8d4fc2b..ad0bc81 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num4.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num4.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2186 -vti_lineageid:SR|{50C5BAF6-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2186 +vti_lineageid:SR|{50C5BAF6-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num5.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num5.gif index 87a19d9..0655cf6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num5.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num5.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2819 -vti_lineageid:SR|{50C5BAF7-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2819 +vti_lineageid:SR|{50C5BAF7-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num6.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num6.gif index 038475a..0a733e7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num6.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num6.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2064 -vti_lineageid:SR|{50C5BAF8-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2064 +vti_lineageid:SR|{50C5BAF8-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num7.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num7.gif index 0df675b..d0921bb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num7.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num7.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1343 -vti_lineageid:SR|{50C5BAF9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1343 +vti_lineageid:SR|{50C5BAF9-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num8.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num8.gif index f9a2efb..72fd47c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num8.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num8.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2883 -vti_lineageid:SR|{50C5BAFA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2883 +vti_lineageid:SR|{50C5BAFA-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num9.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num9.gif index 4c0453b..aa5fa3d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num9.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/num9.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4916 -vti_lineageid:SR|{50C5BAFB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4916 +vti_lineageid:SR|{50C5BAFB-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/numbering_systems_tutorial.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/numbering_systems_tutorial.html index 96761f9..a4d8111 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/numbering_systems_tutorial.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/numbering_systems_tutorial.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 14:48:06 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|tutorials.html asm_tutorial_01.html numbering_systems_tutorial.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_title:SR|Numbering Systems Tutorial -vti_lineageid:SR|{CE8EB365-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 14:42:36 -0000 -vti_cacheddtm:TX|08 Feb 2004 14:48:06 -0000 -vti_filesize:IR|10244 -vti_cachedtitle:SR|Numbering Systems Tutorial -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|S|num1.gif S|num2.gif S|num3.gif S|num4.gif S|num5.gif S|num7.gif S|num6.gif S|num8.gif S|num9.gif K|numbering_systems_tutorial.html K|numbering_systems_tutorial.html S|num10.gif S|num11.gif S|num12.gif H|asm_tutorial_01.html -vti_cachedsvcrellinks:VX|FSUS|num1.gif FSUS|num2.gif FSUS|num3.gif FSUS|num4.gif FSUS|num5.gif FSUS|num7.gif FSUS|num6.gif FSUS|num8.gif FSUS|num9.gif FKUS|numbering_systems_tutorial.html FKUS|numbering_systems_tutorial.html FSUS|num10.gif FSUS|num11.gif FSUS|num12.gif FHUS|asm_tutorial_01.html -vti_cachedneedsrewrite:BR|true -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Numbering\\ Systems\\ Tutorials keywords numbering\\ systems\\ tutorial,\\ 8086,\\ hex,\\ oct,\\ bin,\\ binary,\\ hexadecimal,\\ octal,\\ ocatal robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 14:48:06 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|tutorials.html asm_tutorial_01.html numbering_systems_tutorial.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_title:SR|Numbering Systems Tutorial +vti_lineageid:SR|{CE8EB365-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 14:42:36 -0000 +vti_cacheddtm:TX|08 Feb 2004 14:48:06 -0000 +vti_filesize:IR|10244 +vti_cachedtitle:SR|Numbering Systems Tutorial +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|S|num1.gif S|num2.gif S|num3.gif S|num4.gif S|num5.gif S|num7.gif S|num6.gif S|num8.gif S|num9.gif K|numbering_systems_tutorial.html K|numbering_systems_tutorial.html S|num10.gif S|num11.gif S|num12.gif H|asm_tutorial_01.html +vti_cachedsvcrellinks:VX|FSUS|num1.gif FSUS|num2.gif FSUS|num3.gif FSUS|num4.gif FSUS|num5.gif FSUS|num7.gif FSUS|num6.gif FSUS|num8.gif FSUS|num9.gif FKUS|numbering_systems_tutorial.html FKUS|numbering_systems_tutorial.html FSUS|num10.gif FSUS|num11.gif FSUS|num12.gif FHUS|asm_tutorial_01.html +vti_cachedneedsrewrite:BR|true +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Numbering\\ Systems\\ Tutorials keywords numbering\\ systems\\ tutorial,\\ 8086,\\ hex,\\ oct,\\ bin,\\ binary,\\ hexadecimal,\\ octal,\\ ocatal robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/reference.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/reference.html index 138ede6..beb4b55 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/reference.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/reference.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 -vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 -vti_filesize:IR|1295 -vti_cachedtitle:SR|Reference for Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|editor.html H|compiler.html H|emulator.html H|8086_instruction_set.html H|supported_interrupts.html H|memory.html H|custom_memory_map.html H|compatibility.html H|io.html -vti_cachedsvcrellinks:VX|FHUS|editor.html FHUS|compiler.html FHUS|emulator.html FHUS|8086_instruction_set.html FHUS|supported_interrupts.html FHUS|memory.html FHUS|custom_memory_map.html FHUS|compatibility.html FHUS|io.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description emu8086\\ Reference\\ and\\ Description keywords emu8086,\\ reference,\\ description,\\ hints -vti_charset:SR|gb2312 -vti_title:SR|Reference for Emu8086 -vti_lineageid:SR|{50C5BAFC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Jun 2003 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Jun 2003 16:00:00 -0000 +vti_cacheddtm:TX|02 Jun 2003 16:00:00 -0000 +vti_filesize:IR|1295 +vti_cachedtitle:SR|Reference for Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|editor.html H|compiler.html H|emulator.html H|8086_instruction_set.html H|supported_interrupts.html H|memory.html H|custom_memory_map.html H|compatibility.html H|io.html +vti_cachedsvcrellinks:VX|FHUS|editor.html FHUS|compiler.html FHUS|emulator.html FHUS|8086_instruction_set.html FHUS|supported_interrupts.html FHUS|memory.html FHUS|custom_memory_map.html FHUS|compatibility.html FHUS|io.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description emu8086\\ Reference\\ and\\ Description keywords emu8086,\\ reference,\\ description,\\ hints +vti_charset:SR|gb2312 +vti_title:SR|Reference for Emu8086 +vti_lineageid:SR|{50C5BAFC-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/requirements.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/requirements.html index b2d8c91..f48bde2 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/requirements.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/requirements.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 05:21:44 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 05:21:44 -0000 -vti_cacheddtm:TX|05 Jul 2003 05:21:44 -0000 -vti_filesize:IR|1635 -vti_cachedtitle:SR|Software Requirements -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe H|http://www.simtel.net/vbrun.php -vti_cachedsvcrellinks:VX|NHHS|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe NHHS|http://www.simtel.net/vbrun.php -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Software\\ Requirements\\ for\\ Emu8086 keywords software,\\ requirements robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Software Requirements -vti_lineageid:SR|{50C5BAD9-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 05:21:44 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 05:21:44 -0000 +vti_cacheddtm:TX|05 Jul 2003 05:21:44 -0000 +vti_filesize:IR|1635 +vti_cachedtitle:SR|Software Requirements +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe H|http://www.simtel.net/vbrun.php +vti_cachedsvcrellinks:VX|NHHS|http://download.microsoft.com/download/vb60pro/Redist/sp5/WIN98Me/EN-US/vbrun60sp5.exe NHHS|http://www.simtel.net/vbrun.php +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Software\\ Requirements\\ for\\ Emu8086 keywords software,\\ requirements robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Software Requirements +vti_lineageid:SR|{50C5BAD9-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/robot.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/robot.gif index b780405..72f0dd6 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/robot.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/robot.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|8426 -vti_lineageid:SR|{50C5BADA-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|8426 +vti_lineageid:SR|{50C5BADA-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/screen01.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/screen01.gif index 1ea1328..532024c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/screen01.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/screen01.gif @@ -1,13 +1,13 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_02.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_lineageid:SR|{50C5BAFD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|2513 -vti_lastwidth:IX|426 -vti_lastheight:IX|174 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TW|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_02.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_lineageid:SR|{50C5BAFD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_nexttolasttimemodified:TW|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|2513 +vti_lastwidth:IX|426 +vti_lastheight:IX|174 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stack.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stack.gif index 90960da..d4ab938 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stack.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stack.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|1552 -vti_lineageid:SR|{50C5BADB-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_09.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|1552 +vti_lineageid:SR|{50C5BADB-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_09.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start.html index 94ccd2b..3ab03df 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 03:31:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:31:08 -0000 -vti_cacheddtm:TX|05 Jul 2003 03:31:08 -0000 -vti_filesize:IR|330 -vti_cachedtitle:SR|Help for Emu8086 -vti_cachedlinkinfo:VX|F|menu.html F|start_unframed.html -vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|start_unframed.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|GENERATOR Textpad -vti_charset:SR|gb2312 -vti_generator:SR|Textpad -vti_hasframeset:BR|true -vti_title:SR|Help for Emu8086 -vti_lineageid:SR|{50C5BADC-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 03:31:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:31:08 -0000 +vti_cacheddtm:TX|05 Jul 2003 03:31:08 -0000 +vti_filesize:IR|330 +vti_cachedtitle:SR|Help for Emu8086 +vti_cachedlinkinfo:VX|F|menu.html F|start_unframed.html +vti_cachedsvcrellinks:VX|FFUS|menu.html FFUS|start_unframed.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|GENERATOR Textpad +vti_charset:SR|gb2312 +vti_generator:SR|Textpad +vti_hasframeset:BR|true +vti_title:SR|Help for Emu8086 +vti_lineageid:SR|{50C5BADC-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start_unframed.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start_unframed.html index 3c29702..bd2c6ff 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start_unframed.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/start_unframed.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:40:03 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html start.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:34:42 -0000 -vti_title:SR|Overview of Emu8086 -vti_lineageid:SR|{CE8EB363-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|05 Jul 2003 03:34:42 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:40:02 -0000 -vti_filesize:IR|2487 -vti_cachedtitle:SR|Overview of Emu8086 -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|tutorials.html -vti_cachedsvcrellinks:VX|FHUS|tutorials.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords overview,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:40:03 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html start.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:34:42 -0000 +vti_title:SR|Overview of Emu8086 +vti_lineageid:SR|{CE8EB363-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|05 Jul 2003 03:34:42 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:40:02 -0000 +vti_filesize:IR|2487 +vti_cachedtitle:SR|Overview of Emu8086 +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|tutorials.html +vti_cachedsvcrellinks:VX|FHUS|tutorials.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description 8086\\ Assembler\\ Tutorial\\ for\\ Beginners keywords overview,\\ 8086,\\ tutorial,\\ programming,\\ assembler\\ tutorial,\\ tutorial\\ for\\ begginers robots nofollow +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stepper.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stepper.gif index 6c74a1a..6d35f4c 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stepper.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/stepper.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4167 -vti_lineageid:SR|{50C5BADD-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4167 +vti_lineageid:SR|{50C5BADD-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/supported_interrupts.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/supported_interrupts.html index 6b878f7..065d43a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/supported_interrupts.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/supported_interrupts.html @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|05 Jul 2003 03:37:52 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|05 Jul 2003 03:37:52 -0000 -vti_cacheddtm:TX|05 Jul 2003 03:37:52 -0000 -vti_filesize:IR|13578 -vti_cachedtitle:SR|Interrupts currently supported by emulator -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html -vti_cachedsvcrellinks:VX|FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Interrupts\\ currently\\ supported\\ by\\ emulator keywords supported,\\ interrupts robots nofollow -vti_charset:SR|gb2312 -vti_title:SR|Interrupts currently supported by emulator -vti_lineageid:SR|{50C5BADE-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|memory.html emulator.html asm_tutorial_04.html asm_tutorial_11.html reference.html supported_interrupts.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|05 Jul 2003 03:37:52 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|05 Jul 2003 03:37:52 -0000 +vti_cacheddtm:TX|05 Jul 2003 03:37:52 -0000 +vti_filesize:IR|13578 +vti_cachedtitle:SR|Interrupts currently supported by emulator +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html K|supported_interrupts.html +vti_cachedsvcrellinks:VX|FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html FKUS|supported_interrupts.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Interrupts\\ currently\\ supported\\ by\\ emulator keywords supported,\\ interrupts robots nofollow +vti_charset:SR|gb2312 +vti_title:SR|Interrupts currently supported by emulator +vti_lineageid:SR|{50C5BADE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|memory.html emulator.html asm_tutorial_04.html asm_tutorial_11.html reference.html supported_interrupts.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/traffic.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/traffic.gif index 0cbfdd8..e771ff0 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/traffic.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/traffic.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|6778 -vti_lineageid:SR|{50C5BADF-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_12.html io.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|6778 +vti_lineageid:SR|{50C5BADF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_12.html io.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tut3a.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tut3a.gif index 1571368..e0bc151 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tut3a.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tut3a.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|10570 -vti_lineageid:SR|{50C5BAFE-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|10570 +vti_lineageid:SR|{50C5BAFE-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tutorials.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tutorials.html index 3556987..c412e4f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tutorials.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/tutorials.html @@ -1,22 +1,22 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|08 Feb 2004 13:43:08 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|menu.html help.html start_unframed.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 -vti_title:SR|Tutorials -vti_lineageid:SR|{CE8EB364-5A7D-11D8-BBBF-A878AF7FD375} -vti_nexttolasttimemodified:TW|08 Feb 2004 13:43:03 -0000 -vti_cacheddtm:TX|08 Feb 2004 13:43:02 -0000 -vti_filesize:IR|1788 -vti_cachedtitle:SR|Tutorials -vti_cachedbodystyle:SR| -vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html H|asm_tutorial_01.html H|asm_tutorial_02.html H|asm_tutorial_03.html H|asm_tutorial_04.html H|asm_tutorial_05.html H|asm_tutorial_06.html H|asm_tutorial_07.html H|asm_tutorial_08.html H|asm_tutorial_09.html H|asm_tutorial_10.html H|asm_tutorial_11.html H|asm_tutorial_12.html -vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FHUS|asm_tutorial_01.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_04.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_06.html FHUS|asm_tutorial_07.html FHUS|asm_tutorial_08.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_11.html FHUS|asm_tutorial_12.html -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|description Tutorials\\ for\\ 8086\\ Assembler keywords tutorials,\\ 8086,\\ assembler,\\ simulator -vti_charset:SR|gb2312 +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|08 Feb 2004 13:43:08 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|menu.html help.html start_unframed.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|07 Aug 2002 16:00:00 -0000 +vti_title:SR|Tutorials +vti_lineageid:SR|{CE8EB364-5A7D-11D8-BBBF-A878AF7FD375} +vti_nexttolasttimemodified:TW|08 Feb 2004 13:43:03 -0000 +vti_cacheddtm:TX|08 Feb 2004 13:43:02 -0000 +vti_filesize:IR|1788 +vti_cachedtitle:SR|Tutorials +vti_cachedbodystyle:SR| +vti_cachedlinkinfo:VX|H|numbering_systems_tutorial.html H|asm_tutorial_01.html H|asm_tutorial_02.html H|asm_tutorial_03.html H|asm_tutorial_04.html H|asm_tutorial_05.html H|asm_tutorial_06.html H|asm_tutorial_07.html H|asm_tutorial_08.html H|asm_tutorial_09.html H|asm_tutorial_10.html H|asm_tutorial_11.html H|asm_tutorial_12.html +vti_cachedsvcrellinks:VX|FHUS|numbering_systems_tutorial.html FHUS|asm_tutorial_01.html FHUS|asm_tutorial_02.html FHUS|asm_tutorial_03.html FHUS|asm_tutorial_04.html FHUS|asm_tutorial_05.html FHUS|asm_tutorial_06.html FHUS|asm_tutorial_07.html FHUS|asm_tutorial_08.html FHUS|asm_tutorial_09.html FHUS|asm_tutorial_10.html FHUS|asm_tutorial_11.html FHUS|asm_tutorial_12.html +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|description Tutorials\\ for\\ 8086\\ Assembler keywords tutorials,\\ 8086,\\ assembler,\\ simulator +vti_charset:SR|gb2312 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/varview.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/varview.gif index d799c07..83aca90 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/varview.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/varview.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_backlinkinfo:VX|asm_tutorial_03.html -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|3310 -vti_lineageid:SR|{50C5BAFF-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_backlinkinfo:VX|asm_tutorial_03.html +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|3310 +vti_lineageid:SR|{50C5BAFF-5C7E-11D8-BBBF-FC1E4670DE7D} diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/write_bin.gif b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/write_bin.gif index a67d824..327f562 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/write_bin.gif +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_cnf/write_bin.gif @@ -1,10 +1,10 @@ -vti_encoding:SR|utf8-nl -vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 -vti_extenderversion:SR|5.0.2.2623 -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 -vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 -vti_filesize:IR|4011 -vti_lineageid:SR|{50C5BAE0-5C7E-11D8-BBBF-FC1E4670DE7D} -vti_backlinkinfo:VX|asm_tutorial_11.html +vti_encoding:SR|utf8-nl +vti_timelastmodified:TR|02 Aug 2002 16:00:00 -0000 +vti_extenderversion:SR|5.0.2.2623 +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timecreated:TR|02 Aug 2002 16:00:00 -0000 +vti_cacheddtm:TX|02 Aug 2002 16:00:00 -0000 +vti_filesize:IR|4011 +vti_lineageid:SR|{50C5BAE0-5C7E-11D8-BBBF-FC1E4670DE7D} +vti_backlinkinfo:VX|asm_tutorial_11.html diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todo.htm b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todo.htm index bb94b3a..b0e22a5 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todo.htm +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todo.htm @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 -vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 -vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 -vti_filesize:IR|555 -vti_cachedtitle:SR|Active To Do List -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 -vti_charset:SR|utf-8 -vti_title:SR|Active To Do List -vti_extenderversion:SR|5.0.2.2623 -vti_lineageid:SR|{844680A3-5D41-11D8-BBC1-DB570625977B} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 +vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 +vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 +vti_filesize:IR|555 +vti_cachedtitle:SR|Active To Do List +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 +vti_title:SR|Active To Do List +vti_extenderversion:SR|5.0.2.2623 +vti_lineageid:SR|{844680A3-5D41-11D8-BBC1-DB570625977B} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todoh.htm b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todoh.htm index acf5d14..15f8610 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todoh.htm +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/_vti_cnf/_x_todoh.htm @@ -1,19 +1,19 @@ -vti_encoding:SR|utf8-nl -vti_author:SR|friend -vti_modifiedby:SR|friend -vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 -vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 -vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 -vti_filesize:IR|557 -vti_cachedtitle:SR|To Do List History -vti_cachedbodystyle:SR| -vti_cachedneedsrewrite:BR|false -vti_cachedhasbots:BR|false -vti_cachedhastheme:BR|false -vti_cachedhasborder:BR|false -vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 -vti_charset:SR|utf-8 -vti_title:SR|To Do List History -vti_extenderversion:SR|5.0.2.2623 -vti_lineageid:SR|{844680A4-5D41-11D8-BBC1-DB570625977B} -vti_backlinkinfo:VX| +vti_encoding:SR|utf8-nl +vti_author:SR|friend +vti_modifiedby:SR|friend +vti_timelastmodified:TR|12 Feb 2004 01:55:07 -0000 +vti_timecreated:TR|12 Feb 2004 01:55:07 -0000 +vti_cacheddtm:TX|12 Feb 2004 01:55:08 -0000 +vti_filesize:IR|557 +vti_cachedtitle:SR|To Do List History +vti_cachedbodystyle:SR| +vti_cachedneedsrewrite:BR|false +vti_cachedhasbots:BR|false +vti_cachedhastheme:BR|false +vti_cachedhasborder:BR|false +vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ charset=utf-8 +vti_charset:SR|utf-8 +vti_title:SR|To Do List History +vti_extenderversion:SR|5.0.2.2623 +vti_lineageid:SR|{844680A4-5D41-11D8-BBC1-DB570625977B} +vti_backlinkinfo:VX| diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/botinfs.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/botinfs.cnf index a8e0751..3db463d 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/botinfs.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/botinfs.cnf @@ -1,2 +1,2 @@ -vti_encoding:SR|utf8-nl -C\:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\50\\bots\\vinavbar\\vinavbar.inf:VW|vinavbar +vti_encoding:SR|utf8-nl +C\:\\Program Files\\Common Files\\Microsoft Shared\\Web Server Extensions\\50\\bots\\vinavbar\\vinavbar.inf:VW|vinavbar diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/bots.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/bots.cnf index 2e6e14d..37a50b7 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/bots.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/bots.cnf @@ -1,2 +1,2 @@ -vti_encoding:SR|utf8-nl -vinavbar:VW|C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\vinavbar.inf vinavbar E I info N C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\fp5Avnb.dll +vti_encoding:SR|utf8-nl +vinavbar:VW|C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\vinavbar.inf vinavbar E I info N C:\\\\Program\\ Files\\\\Common\\ Files\\\\Microsoft\\ Shared\\\\Web\\ Server\\ Extensions\\\\50\\\\bots\\\\vinavbar\\\\fp5Avnb.dll diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/service.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/service.cnf index 479f2e4..6e77bfe 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/service.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/service.cnf @@ -1,21 +1,21 @@ -vti_encoding:SR|utf8-nl -vti_restartmanual:IX|0 -vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_TimedDocEvents -vti_webservertype:SR|diskweb -vti_categories:VR|鏃呰 璐圭敤鎶ヨ〃 鍟嗗姟 绔炰簤 鐩殑/鐩爣 涓绘剰 鏉傞」 绛夊緟 VIP 澶勭悊涓 璁″垝 鏃ョ▼琛 -vti_defaultlanguage:SR|zh-cn -vti_approvalapproved:SR|鍚屾剰 -vti_approvaldenied:SR|鎷掔粷 -vti_timecreated:TR|08 Feb 2004 11:47:07 -0000 -vti_oldestcompatibleversion:SR|2.0.0.0 -vti_defaultcharset:SR|gb2312 -vti_navbuttonuplabel:SR|涓婁竴灞 -vti_disableautoimgsizeexts:SX|.asp -vti_extenderversion:SR|5.0.2.2623 -vti_publishmetainfokeys:VR|vti_assignedto vti_approvallevel vti_categories vti_description -vti_ignorekeyboard:IR|1 -vti_navbuttonprevlabel:SR|涓婁竴椤 -vti_navbuttonnextlabel:SR|涓嬩竴椤 -vti_approvallevels:VR|鍚屾剰 鎷掔粷 鎸傝捣妫鏌 -vti_navbuttonhomelabel:SR|涓婚〉 -vti_dependenciesood:IR|1 +vti_encoding:SR|utf8-nl +vti_restartmanual:IX|0 +vti_featurelist:VX|vti_ACAll vti_ServiceMarkUrlDirBrowse vti_ServiceMarkUrlDirExec vti_ServiceMarkUrlDirScript vti_ACIPAddresses vti_ServerEmailTransport vti_ServerIndexServer vti_ServerASP vti_ServerCollab vti_TimedDocEvents +vti_webservertype:SR|diskweb +vti_categories:VR|鏃呰 璐圭敤鎶ヨ〃 鍟嗗姟 绔炰簤 鐩殑/鐩爣 涓绘剰 鏉傞」 绛夊緟 VIP 澶勭悊涓 璁″垝 鏃ョ▼琛 +vti_defaultlanguage:SR|zh-cn +vti_approvalapproved:SR|鍚屾剰 +vti_approvaldenied:SR|鎷掔粷 +vti_timecreated:TR|08 Feb 2004 11:47:07 -0000 +vti_oldestcompatibleversion:SR|2.0.0.0 +vti_defaultcharset:SR|gb2312 +vti_navbuttonuplabel:SR|涓婁竴灞 +vti_disableautoimgsizeexts:SX|.asp +vti_extenderversion:SR|5.0.2.2623 +vti_publishmetainfokeys:VR|vti_assignedto vti_approvallevel vti_categories vti_description +vti_ignorekeyboard:IR|1 +vti_navbuttonprevlabel:SR|涓婁竴椤 +vti_navbuttonnextlabel:SR|涓嬩竴椤 +vti_approvallevels:VR|鍚屾剰 鎷掔粷 鎸傝捣妫鏌 +vti_navbuttonhomelabel:SR|涓婚〉 +vti_dependenciesood:IR|1 diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/services.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/services.cnf index b498fd4..d83d55f 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/services.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/services.cnf @@ -1 +1 @@ -/ +/ diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/structure.cnf b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/structure.cnf index 23592e3..aa39c87 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/structure.cnf +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/_vti_pvt/structure.cnf @@ -1,4 +1,4 @@ -3.0.0.507 -1001 -1000,index.html,0,Help for Emu8086,0,1076240988,1 +3.0.0.507 +1001 +1000,index.html,0,Help for Emu8086,0,1076240988,1 vti_globalpage:BW|true \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_04.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_04.html index 25118e6..87d235a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_04.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_04.html @@ -1,136 +1,136 @@ - - - - - -8086 Assembler Tutorial for Beginners (Part 4) - - - - - - - - - - - - - -
- - - - -8086 Assembler Tutorial for Beginners (Part 4) - - - - - -

- -中断 -
 

中断是一系列功能调用。这些功能调用使得编程更加容易。
-
-比如,你想在打印机上输出一个字符,你只需要简单的调用
-
-中断,它将帮你完成所有的事情。另外还有控制磁盘和其他
-
-硬件工作的中断。我们将这些功能调用称作软件中断。
-
-不同的硬件同样可以触发中断,这些中断称作硬件中断。这里
-
-我们只介绍软件中断(
software interrupts)。
- - 

-

触发一个软件中断,需要使用INT指令,它的使用方式非常简单
- 

-
-INT value -
-
-上面value的取值范围是从 0 -255 (或者0到0ffh),通常我们
-
-使用十六进制。

你也许猜测只有256个中断调用,但是这是不正确的。因为每一
-
-个中断都有子功能。

-

在调用一个中断的子功能之前,需要设置AH寄存器。

-


-每一个中断最多可以拥有256个子功能(于是,我们有
-
-256*256=65536个功能调用)。一般情况下使用AH寄存器,但是
-
-一些情况下可能使用另外的寄存器。通常,其他的寄存器
-
-是用来传递数据和参数的。

-

下面的例子调用了 INT 10h中断0Eh子功能输出字符串‘Hello!'。
-
-这个功能作用是在屏幕上显示一个字符,然后光标进一,如果
-
-需要还滚屏。
- - 

- -
-
#MAKE_COM# ; 生成com文件的指令
-
ORG 100h
-
;我们使用的这个子功能没有返回值,
-;所以我们只用设置就可以了。
-
-MOV AH, 0Eh ; 选择子功能
-
;int 10h/0eh 子功能,输出放在
-;AL寄存器中的ASCII码对应的字符
-
-MOV AL, 'H' ; ASCII码: 72
-INT 10h ; 输出
-
-MOV AL, 'e' ; ASCII 码: 101
-INT 10h ; 输出
-
-MOV AL, 'l' ; ASCII 码: 108
-INT 10h ; 输出
-
-MOV AL, 'l' ; ASCII 码: 108
-INT 10h ; 输出
-
-MOV AL, 'o' ; ASCII 码: 111
-INT 10h ; 输出
-
-MOV AL, '!' ; ASCII 码: 33
-INT 10h ; 输出
-
-RET ; 返回操作系统
-
- -
将上述程序拷贝粘贴到Emu8086代码编辑器,点击

[Compile and Emulate] -按钮,运行!

-

  关于中断更多的知识,请查阅

- -

 支持中断列表 -(list of supported interrupts)
- - 

- -
-
- <<< 上一部分 <<< -     - >>> 下一部分 >>> -
-
- - -
- -
- - -
- - - - - + + + + + +8086 Assembler Tutorial for Beginners (Part 4) + + + + + + + + + + + + + +
+ + + + +8086 Assembler Tutorial for Beginners (Part 4) + + + + + +

+ +中断 +
 

中断是一系列功能调用。这些功能调用使得编程更加容易。
+
+比如,你想在打印机上输出一个字符,你只需要简单的调用
+
+中断,它将帮你完成所有的事情。另外还有控制磁盘和其他
+
+硬件工作的中断。我们将这些功能调用称作软件中断。
+
+不同的硬件同样可以触发中断,这些中断称作硬件中断。这里
+
+我们只介绍软件中断(
software interrupts)。
+ + 

+

触发一个软件中断,需要使用INT指令,它的使用方式非常简单
+ 

+
+INT value +
+
+上面value的取值范围是从 0 +255 (或者0到0ffh),通常我们
+
+使用十六进制。

你也许猜测只有256个中断调用,但是这是不正确的。因为每一
+
+个中断都有子功能。

+

在调用一个中断的子功能之前,需要设置AH寄存器。

+


+每一个中断最多可以拥有256个子功能(于是,我们有
+
+256*256=65536个功能调用)。一般情况下使用AH寄存器,但是
+
+一些情况下可能使用另外的寄存器。通常,其他的寄存器
+
+是用来传递数据和参数的。

+

下面的例子调用了 INT 10h中断0Eh子功能输出字符串‘Hello!'。
+
+这个功能作用是在屏幕上显示一个字符,然后光标进一,如果
+
+需要还滚屏。
+ + 

+ +
+
#MAKE_COM# ; 生成com文件的指令
+
ORG 100h
+
;我们使用的这个子功能没有返回值,
+;所以我们只用设置就可以了。
+
+MOV AH, 0Eh ; 选择子功能
+
;int 10h/0eh 子功能,输出放在
+;AL寄存器中的ASCII码对应的字符
+
+MOV AL, 'H' ; ASCII码: 72
+INT 10h ; 输出
+
+MOV AL, 'e' ; ASCII 码: 101
+INT 10h ; 输出
+
+MOV AL, 'l' ; ASCII 码: 108
+INT 10h ; 输出
+
+MOV AL, 'l' ; ASCII 码: 108
+INT 10h ; 输出
+
+MOV AL, 'o' ; ASCII 码: 111
+INT 10h ; 输出
+
+MOV AL, '!' ; ASCII 码: 33
+INT 10h ; 输出
+
+RET ; 返回操作系统
+
+ +
将上述程序拷贝粘贴到Emu8086代码编辑器,点击

[Compile and Emulate] +按钮,运行!

+

  关于中断更多的知识,请查阅

+ +

 支持中断列表 +(list of supported interrupts)
+ + 

+ +
+
+ <<< 上一部分 <<< +     + >>> 下一部分 >>> +
+
+ + +
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_11.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_11.html index 8b72488..cca9d03 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_11.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_11.html @@ -1,214 +1,214 @@ - - - - - -8086 Assembler Tutorial for Beginners (Part 11) - - - - - - - - - - - - - - - - - -
8086 Assembler Tutorial - for Beginners (Part 11)
-
- 编写你自己的操作系统
-
-
- 通常,计算机启动之后会读取你A:盘第一个512字节扇区(面 0 0 1),
-
- 并存放在0000h:7c00h,然后将控制权交给它。如果读取失败,bios将
-
- 使用第一个硬盘的MBR来完成这个工作。
-
- 这一节教程讲述如何从软盘启动,基本原理与从硬盘启动一样。
-
- 而使用软盘启动有如下优点: -
    -
  • 你可以保证你自己的操作系统不受到其他操作系统的影响
    - (windows dos).
    -
    -
  • -
  • 修改软盘的启动记录很容易.
  • -
-
- 一个简单的从软盘启动的程序:
-
- - - - -
-

-; 建立 BOOT 文件的指令e:
-#MAKE_BOOT#
-
-; 启动区要求读入到 0000:7C00,
-; 通知编译器
-ORG 7C00h
-
-; 将信息地址存入 SI 寄存器:
-LEA SI, msg
-
-; teletype function id:
-MOV AH, 0Eh
-
-print:   MOV AL, [SI]
-         CMP AL, 0
-         JZ done
-         INT 10h   ; print using teletype.
-         INC SI
-         JMP print
-
-; 等待任意键按下
-done:      MOV AH, 0
-           INT 16h
-
-
-; store magic value at 0040h:0072h:
-;   0000h - cold boot.
-;   1234h - warm boot.
-MOV     AX, 0040h
-MOV     DS, AX
-MOV     w.[0072h], 0000h ; cold boot.
-
-JMP	0FFFFh:0000h	 ; reboot!
-
-
-new_line EQU 13, 10
-
-msg DB  'Hello This is My First Boot Program!'
-    DB  new_line, 'Press any key to reboot', 0
-
-
-
-
-
- 将上述例子拷贝到Emu8086源代码编辑器,按下
-
- [compile and emulate]。模拟器将会自动读取
-
- “.boot”文件到000h:7c00h
-
- 你可以像普通程序一样运行上面的例子,也可以使用Virtual 菜单中的
-
- Write 512 bytes at 7C00h to
将其写入一个虚拟软盘(模拟器安装
-
- 目录下的floppy_0文件)Boot Sector, 将你的程序写入一个虚拟软盘
-
- 之后,你可以选择Virtual Drive 菜单中的Boot - from Floppy来从你
-
- 做好的操作系统中启动。
-
-
-
-
- 如果你对这方面感兴趣,你可以将虚拟软盘(FLOPPY_0)或者
-
- ".boot"文件写入一个真正的软盘中,可以用它启动你的计算机。
-
- 我推荐使用 rawwrite for windows ,下载地址:
-
http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm
-
- (最新的版本可以在所有的windows下工作!) -

- 注意.boot 文件的内容不是 ms-dos 兼容的启动区格式
-
- (也就是说你无法在windows或者dos下读写软盘内容,
-
- 除非你重新格式化该软盘),所以不要用它存放数据。实际上,
-
- 无论你使用什么raw-write程序写入,他们都会删除软盘上
-
- 的数据。所以在制作启动盘之前,请确认盘上没有重要信息。
-  
-
".boot"文件被限制只有512字节大小(一个扇区大小)。如果你
-
- 的操作系统超过这个大小,你需要从其他扇区读取信息。你可以
-
- 在Sample目录下找到一个微型的操作系统的很好的例子:
-
- micro-os_loader.asm
-
- - micro-os_kernel.asm
-
-
- 为了建立大一些的操作系统(超过512字节),
-
- 你可以使用‘.bin’文件('File'->'New'中选择‘Bin Templeate’)
-
- 使用模拟器菜单中的"Write .bin file - to floppy...":
-
-
- 你还可以使用这个写‘boot’文件:
-
- - - - -
位于:
-
Cylinder: 0
- Head:0
- Sector: 1
-
- 的扇区是启动扇区!
-
-


-
- 软盘和硬盘的示意图:
-
-
-

-

对于一张1440kb 软盘:
-

-
    -
  • 软盘有2面,有2个磁头;这两个磁头分别位于每一个面(0..1
    -
    -
  • -
  • 每一面有80个磁道(编号 0..79
    -
    -
  • -
  • 每一磁道有18个扇区(1..18
    -
    -
  • -
  • 每一扇区有512字节
    -
    -
  • -
  • 磁盘总容量 2*80*18*512=1,474,560字节
    -
    -
  • -
- 软盘扇区读取使用 INT - 13h / AH = 02h.
-
-
-
-
- <<< 前一部分 <<< -      >>> - 后一部分 >>> -
-
-
-
- - - - + + + + + +8086 Assembler Tutorial for Beginners (Part 11) + + + + + + + + + + + + + + + + + +
8086 Assembler Tutorial + for Beginners (Part 11)
+
+ 编写你自己的操作系统
+
+
+ 通常,计算机启动之后会读取你A:盘第一个512字节扇区(面 0 0 1),
+
+ 并存放在0000h:7c00h,然后将控制权交给它。如果读取失败,bios将
+
+ 使用第一个硬盘的MBR来完成这个工作。
+
+ 这一节教程讲述如何从软盘启动,基本原理与从硬盘启动一样。
+
+ 而使用软盘启动有如下优点: +
    +
  • 你可以保证你自己的操作系统不受到其他操作系统的影响
    + (windows dos).
    +
    +
  • +
  • 修改软盘的启动记录很容易.
  • +
+
+ 一个简单的从软盘启动的程序:
+
+ + + + +
+

+; 建立 BOOT 文件的指令e:
+#MAKE_BOOT#
+
+; 启动区要求读入到 0000:7C00,
+; 通知编译器
+ORG 7C00h
+
+; 将信息地址存入 SI 寄存器:
+LEA SI, msg
+
+; teletype function id:
+MOV AH, 0Eh
+
+print:   MOV AL, [SI]
+         CMP AL, 0
+         JZ done
+         INT 10h   ; print using teletype.
+         INC SI
+         JMP print
+
+; 等待任意键按下
+done:      MOV AH, 0
+           INT 16h
+
+
+; store magic value at 0040h:0072h:
+;   0000h - cold boot.
+;   1234h - warm boot.
+MOV     AX, 0040h
+MOV     DS, AX
+MOV     w.[0072h], 0000h ; cold boot.
+
+JMP	0FFFFh:0000h	 ; reboot!
+
+
+new_line EQU 13, 10
+
+msg DB  'Hello This is My First Boot Program!'
+    DB  new_line, 'Press any key to reboot', 0
+
+
+
+
+
+ 将上述例子拷贝到Emu8086源代码编辑器,按下
+
+ [compile and emulate]。模拟器将会自动读取
+
+ “.boot”文件到000h:7c00h
+
+ 你可以像普通程序一样运行上面的例子,也可以使用Virtual 菜单中的
+
+ Write 512 bytes at 7C00h to
将其写入一个虚拟软盘(模拟器安装
+
+ 目录下的floppy_0文件)Boot Sector, 将你的程序写入一个虚拟软盘
+
+ 之后,你可以选择Virtual Drive 菜单中的Boot + from Floppy来从你
+
+ 做好的操作系统中启动。
+
+
+
+
+ 如果你对这方面感兴趣,你可以将虚拟软盘(FLOPPY_0)或者
+
+ ".boot"文件写入一个真正的软盘中,可以用它启动你的计算机。
+
+ 我推荐使用 rawwrite for windows ,下载地址:
+
http://uranus.it.swin.edu.au/~jn/linux/rawwrite.htm
+
+ (最新的版本可以在所有的windows下工作!) +

+ 注意.boot 文件的内容不是 ms-dos 兼容的启动区格式
+
+ (也就是说你无法在windows或者dos下读写软盘内容,
+
+ 除非你重新格式化该软盘),所以不要用它存放数据。实际上,
+
+ 无论你使用什么raw-write程序写入,他们都会删除软盘上
+
+ 的数据。所以在制作启动盘之前,请确认盘上没有重要信息。
+  
+
".boot"文件被限制只有512字节大小(一个扇区大小)。如果你
+
+ 的操作系统超过这个大小,你需要从其他扇区读取信息。你可以
+
+ 在Sample目录下找到一个微型的操作系统的很好的例子:
+
+ micro-os_loader.asm
+
+ + micro-os_kernel.asm
+
+
+ 为了建立大一些的操作系统(超过512字节),
+
+ 你可以使用‘.bin’文件('File'->'New'中选择‘Bin Templeate’)
+
+ 使用模拟器菜单中的"Write .bin file + to floppy...":
+
+
+ 你还可以使用这个写‘boot’文件:
+
+ + + + +
位于:
+
Cylinder: 0
+ Head:0
+ Sector: 1
+
+ 的扇区是启动扇区!
+
+


+
+ 软盘和硬盘的示意图:
+
+
+

+

对于一张1440kb 软盘:
+

+
    +
  • 软盘有2面,有2个磁头;这两个磁头分别位于每一个面(0..1
    +
    +
  • +
  • 每一面有80个磁道(编号 0..79
    +
    +
  • +
  • 每一磁道有18个扇区(1..18
    +
    +
  • +
  • 每一扇区有512字节
    +
    +
  • +
  • 磁盘总容量 2*80*18*512=1,474,560字节
    +
    +
  • +
+ 软盘扇区读取使用 INT + 13h / AH = 02h.
+
+
+
+
+ <<< 前一部分 <<< +      >>> + 后一部分 >>> +
+
+
+
+ + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_13.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_13.html index 0c1f564..037da2a 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_13.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/asm_tutorial_13.html @@ -1,65 +1,65 @@ - - - - -8086 Assembler Tutorial for Beginners (Part 13) - - - - - - - - - - - - - - -

- -

- -祝贺你! 你已经学完了基本教程!

- -现在你可以阅读: - - - -If you have any ideas, suggestions, please let us know:
-e-mail: info@emu8086.com -
-Or check for an update here:
-http://www.emu8086.com -
- -

- -
- - - -本帮助由Zoologist翻译,在很多方面不完善,

如果您在阅读上有任何建议请与 -Zoologist@163.net 联系。
- -

- -

- -
-
- <<< 前一部分 <<< -
-
- -
- - - + + + + +8086 Assembler Tutorial for Beginners (Part 13) + + + + + + + + + + + + + + +

+ +

+ +祝贺你! 你已经学完了基本教程!

+ +现在你可以阅读: + + + +If you have any ideas, suggestions, please let us know:
+e-mail: info@emu8086.com +
+Or check for an update here:
+http://www.emu8086.com +
+ +

+ +
+ + + +本帮助由Zoologist翻译,在很多方面不完善,

如果您在阅读上有任何建议请与 +Zoologist@163.net 联系。
+ +

+ +

+ +
+
+ <<< 前一部分 <<< +
+
+ +
+ + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/index.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/index.html index afa0673..75987ef 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/index.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/index.html @@ -1,15 +1,15 @@ - - - - Help for Emu8086 - - - - - - - - - - + + + + Help for Emu8086 + + + + + + + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/menu.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/menu.html index edd1a5a..9081848 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/menu.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/menu.html @@ -1,34 +1,34 @@ - - - - - HELP MENU FOR EMU8086 - - - - - - - - - - - -

- - - - - |  -索引 |  -概述 |  -教程 |  -Emu8086 参考 |  - - - - -

- - + + + + + HELP MENU FOR EMU8086 + + + + + + + + + + + +

+ + + + + |  +索引 |  +概述 |  +教程 |  +Emu8086 参考 |  + + + + +

+ + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/start.html b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/start.html index cefe7d5..8b96bbb 100644 --- a/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/start.html +++ b/LAB1/棰勫瀹為獙2/80x86鎸囦护閫熸煡/8086鏁欑▼/translate/translate/start.html @@ -1,15 +1,15 @@ - - - - Help for Emu8086 - - - - - - - - - - + + + + Help for Emu8086 + + + + + + + + + + \ No newline at end of file diff --git a/LAB1/棰勫瀹為獙2/example.txt b/LAB1/棰勫瀹為獙2/example.txt index a57f2b2..bcad7c7 100644 --- a/LAB1/棰勫瀹為獙2/example.txt +++ b/LAB1/棰勫瀹為獙2/example.txt @@ -1,11 +1,11 @@ -A -MOV DX,0 -MOV BL,1 -MOV AL,BL -MUL BL -ADD DX,AX -CMP BL,A -JZ 0114 -INC BL -JMP 0105 +A +MOV DX,0 +MOV BL,1 +MOV AL,BL +MUL BL +ADD DX,AX +CMP BL,A +JZ 0114 +INC BL +JMP 0105 INT 20 \ No newline at end of file diff --git a/LAB2-datalab/ReadmeFisrt.txt b/LAB2-datalab/ReadmeFisrt.txt index cd5b51d..140d12a 100644 --- a/LAB2-datalab/ReadmeFisrt.txt +++ b/LAB2-datalab/ReadmeFisrt.txt @@ -1,12 +1,12 @@ -**次文件夹包括本次课程实验LAB2的内容,内含2个文件:datalab-handout.tar以及ReadmeFirst.txt。 - -**本次实验内容经过在ubuntu12.04环境中测试,均可运行通过。 - -**请详细阅读“datalab-handout.rar”包中的readme文件,了解实验过程。 - -**为了便于大家理解实验,我在此简述实验过程: - 首先,大家阅读Readme文件,详细了解实验要求; - 其次,本次实验本质上是填写bits.c文件中尚未完成的各个函数的内容。但是,本实验要求只使用有限数量、规定的操作符。 - 第三,目录下带了dlc和btest两个工具,用于检测你所写的函数代码格式及功能是否正确(两者的用法在readme中有介绍)。 - +**次文件夹包括本次课程实验LAB2的内容,内含2个文件:datalab-handout.tar以及ReadmeFirst.txt。 + +**本次实验内容经过在ubuntu12.04环境中测试,均可运行通过。 + +**请详细阅读“datalab-handout.rar”包中的readme文件,了解实验过程。 + +**为了便于大家理解实验,我在此简述实验过程: + 首先,大家阅读Readme文件,详细了解实验要求; + 其次,本次实验本质上是填写bits.c文件中尚未完成的各个函数的内容。但是,本实验要求只使用有限数量、规定的操作符。 + 第三,目录下带了dlc和btest两个工具,用于检测你所写的函数代码格式及功能是否正确(两者的用法在readme中有介绍)。 + **网上有各路大神做了多种实现方案,并贴出来自己的思路,希望大家多去实践! \ No newline at end of file diff --git a/LAB2-datalab/datalab-handout/bits.c b/LAB2-datalab/datalab-handout/bits.c index 9ccf844..7319db4 100644 --- a/LAB2-datalab/datalab-handout/bits.c +++ b/LAB2-datalab/datalab-handout/bits.c @@ -1,8 +1,8 @@ -/* - * CS:APP Data Lab - * +/* + * CS:APP Data Lab + * * - * + * * bits.c - Source file with your solutions to the Lab. * This is the file you will hand in to your instructor. * @@ -10,7 +10,7 @@ * compiler. You can still use printf for debugging without including * , although you might get a compiler warning. In general, * it's not good practice to ignore compiler warnings, but in this - * case it's OK. + * case it's OK. */ #if 0 @@ -129,20 +129,20 @@ NOTES: * the correct answers. */ - #endif -/* - * bitAnd - x&y using only ~ and | +/* + * bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | * Max ops: 8 * Rating: 1 */ -int bitAnd(int x, int y) { - //Just discrete mathematics. XY=\overline{X+Y}. - return ~(x|y); +int bitAnd(int x, int y) +{ + // Just discrete mathematics. XY=\overline{X+Y}. + return ~((~x) | (~y)); } -/* +/* * getByte - Extract byte n from word x * Bytes numbered from 0 (LSB) to 3 (MSB) * Examples: getByte(0x12345678,1) = 0x56 @@ -150,27 +150,24 @@ int bitAnd(int x, int y) { * Max ops: 6 * Rating: 2 */ -int getByte(int x, int n) { - - - - - - - - return 2; - +int getByte(int x, int n) +{ + int mask = 0xff; // Leave only the last 2 bytes + return (x >> (n << 3) & mask); // Right move 8n bits, i.e. n bytes } -/* +/* * logicalShift - shift x to the right by n, using a logical shift * Can assume that 0 <= n <= 31 * Examples: logicalShift(0x87654321,4) = 0x08765432 * Legal ops: ! ~ & ^ | + << >> * Max ops: 20 - * Rating: 3 + * Rating: 3 */ -int logicalShift(int x, int n) { - return 2; +int logicalShift(int x, int n) +{ + int topMask = 0x1 << (32 + ~n); // 32+~n=31-n, to get the top mask + int lowerMask = (0x1 << (32 + ~n)) + ~0; + return (x >> n) & (topMask | lowerMask); } /* * bitCount - returns count of number of 1's in word @@ -179,30 +176,51 @@ int logicalShift(int x, int n) { * Max ops: 40 * Rating: 4 */ -int bitCount(int x) { - return 2; +int bitCount(int x) +{ + int mask = (0x55) | ((0x55) << 8); // 0x00005555 + mask = mask | (mask << 16); // 0x55555555 + x = (x & mask) + (x >> 1 & mask); // 2-bit sum + mask = (0x33) | ((0x33) << 8); // 0x00003333 + mask = mask | (mask << 16); // 0x33333333 + x = (x & mask) + (x >> 2 & mask); // 4-bit sum + mask = (0x0f) | (0x0f << 8); // 0x00000f0f + mask = mask | (mask << 16); // 0x0f0f0f0f + x = (x & mask) + (x >> 4 & mask); // 8-bit sum + mask = (0xff) | (0xff << 16); // 0x00ff00ff + x = (x & mask) + (x >> 8 & mask); // 16-bit sum + mask = (0xff) | (0xff << 8); // 0x0000ffff + x = (x & mask) + (x >> 16 & mask); // 32-bit sum + return x; } -/* +/* * bang - Compute !x without using ! * Examples: bang(3) = 0, bang(0) = 1 * Legal ops: ~ & ^ | + << >> * Max ops: 12 - * Rating: 4 + * Rating: 4 */ -int bang(int x) { - return 2; +int bang(int x) +{ + x = (x >> 16) | x; + x = (x >> 8) | x; + x = (x >> 4) | x; + x = (x >> 2) | x; + x = (x >> 1) | x; + return ~x & 0x1; } -/* - * tmin - return minimum two's complement integer +/* + * tmin - return minimum two's complement integer * Legal ops: ! ~ & ^ | + << >> * Max ops: 4 * Rating: 1 */ -int tmin(void) { - return 2; +int tmin(void) +{ + return 1 << 31; } -/* - * fitsBits - return 1 if x can be represented as an +/* + * fitsBits - return 1 if x can be represented as an * n-bit, two's complement integer. * 1 <= n <= 32 * Examples: fitsBits(5,3) = 0, fitsBits(-4,3) = 1 @@ -210,10 +228,19 @@ int tmin(void) { * Max ops: 15 * Rating: 2 */ -int fitsBits(int x, int n) { - return 2; +// int fitsBits(int x, int n) +// { +// int moveBits = 33 + ~n; // Equals to 32-n +// int result = (x << moveBits) >> moveBits; // Left move, and then right move +// return !(x ^ result); // If okay, result should be equal to x +// } +int fitsBits(int x, int n) +{ + n = n + 31; + return !(((x >> n) + 1) >> 1); } -/* + +/* * divpwr2 - Compute x/(2^n), for 0 <= n <= 30 * Round toward zero * Examples: divpwr2(15,1) = 7, divpwr2(-33,4) = -2 @@ -221,38 +248,46 @@ int fitsBits(int x, int n) { * Max ops: 15 * Rating: 2 */ -int divpwr2(int x, int n) { - return 2; +int divpwr2(int x, int n) +{ + int bias = (x >> 31) & ((1 << n) + ~0); + return (x + bias) >> n; } -/* - * negate - return -x +/* + * negate - return -x * Example: negate(1) = -1. * Legal ops: ! ~ & ^ | + << >> * Max ops: 5 * Rating: 2 */ -int negate(int x) { - return 2; +int negate(int x) +{ + return ~x + 1; } -/* - * isPositive - return 1 if x > 0, return 0 otherwise +/* + * isPositive - return 1 if x > 0, return 0 otherwise * Example: isPositive(-1) = 0. * Legal ops: ! ~ & ^ | + << >> * Max ops: 8 * Rating: 3 */ -int isPositive(int x) { - return 2; +int isPositive(int x) +{ + return !(!(x)) & !((x >> 31) & 1); } -/* - * isLessOrEqual - if x <= y then return 1, else return 0 +/* + * isLessOrEqual - if x <= y then return 1, else return 0 * Example: isLessOrEqual(4,5) = 1. * Legal ops: ! ~ & ^ | + << >> * Max ops: 24 * Rating: 3 */ -int isLessOrEqual(int x, int y) { - return 2; +int isLessOrEqual(int x, int y) +{ + int val = ((x + ~y) >> 31)&1; + x = x >> 31; + y = y >> 31; + return ((x & 1) | !y) & (((x & 1) & !y) | (val)); } /* * ilog2 - return floor(log base 2 of x), where x > 0 @@ -261,10 +296,32 @@ int isLessOrEqual(int x, int y) { * Max ops: 90 * Rating: 4 */ -int ilog2(int x) { - return 2; +int ilog2(int x) +{ + int mask; + + x = (x >> 1) | x; + x = (x >> 2) | x; + x = (x >> 4) | x; + x = (x >> 8) | x; + x = (x >> 16) | x; + + mask = (0x55) | ((0x55) << 8); // 0x00005555 + mask = mask | (mask << 16); // 0x55555555 + x = (x & mask) + (x >> 1 & mask); // 2-bit sum + mask = (0x33) | ((0x33) << 8); // 0x00003333 + mask = mask | (mask << 16); // 0x33333333 + x = (x & mask) + (x >> 2 & mask); // 4-bit sum + mask = (0x0f) | (0x0f << 8); // 0x00000f0f + mask = mask | (mask << 16); // 0x0f0f0f0f + x = (x & mask) + (x >> 4 & mask); // 8-bit sum + mask = (0xff) | (0xff << 16); // 0x00ff00ff + x = (x & mask) + (x >> 8 & mask); // 16-bit sum + mask = (0xff) | (0xff << 8); // 0x0000ffff + x = (x & mask) + (x >> 16 & mask); // 32-bit sum + return x + ~0; } -/* +/* * float_neg - Return bit-level equivalent of expression -f for * floating point argument f. * Both the argument and result are passed as unsigned int's, but @@ -275,10 +332,19 @@ int ilog2(int x) { * Max ops: 10 * Rating: 2 */ -unsigned float_neg(unsigned uf) { - return 2; +unsigned float_neg(unsigned uf) +{ + int c = 0x00ffffff; + if ((~(uf << 1)) < c) + { + return uf; + } + else + { + return uf ^ (0x80000000); + } // 01110000 11110000 } -/* +/* * float_i2f - Return bit-level equivalent of expression (float) x * Result is returned as unsigned int, but * it is to be interpreted as the bit-level representation of a @@ -287,10 +353,11 @@ unsigned float_neg(unsigned uf) { * Max ops: 30 * Rating: 4 */ -unsigned float_i2f(int x) { +unsigned float_i2f(int x) +{ return 2; } -/* +/* * float_twice - Return bit-level equivalent of expression 2*f for * floating point argument f. * Both the argument and result are passed as unsigned int's, but @@ -301,6 +368,7 @@ unsigned float_i2f(int x) { * Max ops: 30 * Rating: 4 */ -unsigned float_twice(unsigned uf) { +unsigned float_twice(unsigned uf) +{ return 2; } diff --git a/LAB2-datalab/datalab-handout/btest b/LAB2-datalab/datalab-handout/btest new file mode 100644 index 0000000..adadd73 Binary files /dev/null and b/LAB2-datalab/datalab-handout/btest differ diff --git a/LAB2-datalab/datalab-handout/fshow b/LAB2-datalab/datalab-handout/fshow new file mode 100644 index 0000000..beface5 Binary files /dev/null and b/LAB2-datalab/datalab-handout/fshow differ diff --git a/LAB2-datalab/datalab-handout/ishow b/LAB2-datalab/datalab-handout/ishow new file mode 100644 index 0000000..c662b69 Binary files /dev/null and b/LAB2-datalab/datalab-handout/ishow differ diff --git a/LAB3-bomblab/瀹為獙鍩烘湰鍐呭涓庤姹.txt b/LAB3-bomblab/瀹為獙鍩烘湰鍐呭涓庤姹.txt index e135301..2bf9314 100644 --- a/LAB3-bomblab/瀹為獙鍩烘湰鍐呭涓庤姹.txt +++ b/LAB3-bomblab/瀹為獙鍩烘湰鍐呭涓庤姹.txt @@ -1,6 +1,6 @@ -本次实验为熟悉汇编程序及其调试方法的实验。 -实验内容包含2个文件bomb(可执行文件)和bomb.c(c源文件)。 -实验主题内容为: -程序运行在linux环境中。程序运行中有6个关卡(6个phase),每个phase需要用户在终端上输入特定的字符或者数字才能通关,否则会引爆炸弹!那么如何才能知道输入什么内容呢?这需要你使用gdb工具反汇编出汇编代码,结合c语言文件找到每个关卡的入口函数。然后分析汇编代码,找到在每个phase程序段中,引导程序跳转到“explode_bomb”程序段的地方,并分析其成功跳转的条件,以此为突破口寻找应该在命令行输入何种字符通关。 - +本次实验为熟悉汇编程序及其调试方法的实验。 +实验内容包含2个文件bomb(可执行文件)和bomb.c(c源文件)。 +实验主题内容为: +程序运行在linux环境中。程序运行中有6个关卡(6个phase),每个phase需要用户在终端上输入特定的字符或者数字才能通关,否则会引爆炸弹!那么如何才能知道输入什么内容呢?这需要你使用gdb工具反汇编出汇编代码,结合c语言文件找到每个关卡的入口函数。然后分析汇编代码,找到在每个phase程序段中,引导程序跳转到“explode_bomb”程序段的地方,并分析其成功跳转的条件,以此为突破口寻找应该在命令行输入何种字符通关。 + 实验需要用到gdb工具,可到网上查找gdb使用方法和参数。 \ No newline at end of file diff --git a/LAB4-buflab/Readme.txt b/LAB4-buflab/Readme.txt index 7aebef4..bdb4771 100644 --- a/LAB4-buflab/Readme.txt +++ b/LAB4-buflab/Readme.txt @@ -1,8 +1,8 @@ ---这是关于内存溢出攻击的实验,相关内容仅限于学习,请不要将相关技术用于非法用途。 - ---此次发布的实验包有如下文件: - buflab-handout.tar.gz,做实验所需的3个文件,请在linux(建议使用32位系统)下解压。 - buflab-writheup.pdf,本次实验的一个简要说明。该文档中除了“在线提交结果并打分”(即submit result to the grading server)部分我们未提供外,其他的信息还是非常有用的,包括对上述3个文件用来干什么、本次实验的任务均有说明。 - mybuflab_solved.tar,按照惯例,我附上网上找到的“大神”做的答案和详细结题思路之一,仅供大家参考。请注意,若大家也用他一样的userid来做实验演示则无效(本次实验要求每个同学输入一个任意的字符作为userid,各自的解答将不同,^-^) - +--这是关于内存溢出攻击的实验,相关内容仅限于学习,请不要将相关技术用于非法用途。 + +--此次发布的实验包有如下文件: + buflab-handout.tar.gz,做实验所需的3个文件,请在linux(建议使用32位系统)下解压。 + buflab-writheup.pdf,本次实验的一个简要说明。该文档中除了“在线提交结果并打分”(即submit result to the grading server)部分我们未提供外,其他的信息还是非常有用的,包括对上述3个文件用来干什么、本次实验的任务均有说明。 + mybuflab_solved.tar,按照惯例,我附上网上找到的“大神”做的答案和详细结题思路之一,仅供大家参考。请注意,若大家也用他一样的userid来做实验演示则无效(本次实验要求每个同学输入一个任意的字符作为userid,各自的解答将不同,^-^) + --本次实验很有挑战,我没有更多可说的了,good luck! \ No newline at end of file