汇编程序设计实践教程/原选题:PC机汇编语言程序设计实践教程 林聪仁 厦门大学出版社 【新华正版图书书籍】

- 作者:林聪仁
- 著:林聪仁
- 装帧:平装
- 印次:1
- 定价:20.00
- ISBN:9787561540169
- 出版社:厦门大学出版社
- 开本:16开
- 印刷时间:暂无
- 语种:暂无
- 出版时间:2011-09-01
- 页数:暂无
- 外部编号:1200111743
- 版次:1
- 成品尺寸:暂无

章 汇编语言程序设计基础
1.1 二进制数和十六进制数
1.1.1 二进制数
1.. 十六进制
1.1.3 十进制数与二进制、十六进制数的转换
. 无符号数和带符号数
.. 无符号数
.. 带符号数
.. 真值与机器数的转换
.. 真值与机器数的关系
..5 计算机中带符号数为什么要用补码
1.3 微机基本原理
1.3.1 微机基本结构框图
1.3.2 指令的基本执行过程
1.4 8086CPU
1.4.1 微处理器概述
1.4.2 8086CPU内部结构
1.4.3 8086寄存器
1.4.4 标志寄存器
1.4.5 判断OF标志的三种方法
1.4.6 标志位小结
1.5 DEUBG操作(一)
1.5.1 DEBUG的启动
1.5.2 退出DEBUG
1.5.3 DEBUG的命令
1.5.4 寄存器命令
1.5.5 汇编命令
1.5.6 单步运行命令
1.6 判断标志位实验
1.6.1 实验目的
1.6.2 实验准备
1.6.3 必做实验
1.6.4 选做实验
1.6.5 思考题
1.7 计算机中的十进制数及其运算原理
1.7.1 BCD码
1.7.2 计算机中BCD码的运算
1.8 BCD码运算实验
1.8.1 实验目的
1.8.2 实验准备
1.8.3 必做实验
1.8.4 选做实验
1.8.5 思考题
习题
第二章 汇编语言程序设计入门
2.1 寻址方式
2.1.1 隐含寻址
2.. 立即寻址
2.1.3 寄存器寻址
2.1.4 段寄存器寻址
2.1.5 I/O端口寻址
2.1.6 转移地址的寻址
2.1.7 存储器操作数的寻址
2.2 数据传送指令
2.2.1 通用数据传送指令
2.2.2 交换指令
2.2.3 堆栈操作指令
2.2.4 查表指令
2.2.5 输入/输出指令
2.2.6 地址传送指令
2.2.7 标志位传送指令
2.2.8 数据传送指令对标志位的影响
2.3 汇编语言源程序结构
2.3.1 分段结构
2.3.2 语句格式
2.3.3 变量和标号
2.3.4 操作数、表达式和操作符
2.3.5 用指令
2.4 汇编语言程序上机过程
2.4.1 编辑
2.4.2 汇编
2.4.3 连接
2.4.4 调试(DEBUG操作(二))
2.5 指令错误分析及寻址方式实验
2.5.1 实验目的
2.5.2 实验准备
2.5.3 必做实验
2.5.4 选做实验
2.5.5 思考题
习题
第三章 算术运算程序
3.1 跳转指令
3.1.1 无条件跳转指令
3.. 条件跳转指令
3.1.3 循环控制指令
3.2 算术运算指令
3.2.1 二进制运算指令
3.2.2 BCD码调整指令
3.3 多字节加/减运算程序
3.3.1 多字节加/减运算程序的基本结构
3.3.2 多字节二进制加法程序
3.3.3 程序调试(DEBUG操作(三))
3.4 多字节加/减程序实验
3.4.1 实验目的
3.4.2 实验准备
3.4.3 必做实验
3.4.4 选做实验
3.4.5 思考题
3.5 多字节除法运算程序
3.5.1 多字节除法程序基本编程方法
3.5.2 除法指令法的除法程序
3.5.3 被除数左移法的除法程序
3.6 多字节除法程序实验
3.6.1 实验目的
3.6.2 实验准备
3.6.3 必做实验
3.6.4 选做实验
3.6.5 思考题
3.7 多字节乘法运算程序
3.7.1 多字节乘法程序的基本编程方法
3.7.2 乘法指令法的多字节乘法程序
3.7.3 阶乘程序
3.8 多字节乘法程序实验
3.8.1 实验目的
3.8.2 实验准备
3.8.3 必做实验
3.8.4 选做实验
3.8.5 思考题
习题
第四章 代码转换程序
4.1 逻辑运算指令
4.1.1 双操作数逻辑运算指令
4.. 单操作数逻辑运算指令
4.2 移位指令
4.2.1 逻辑移位指令
4.2.2 算术移位指令
4.2.3 循环移位指令
4.2.4 带CF循环移位指令
4.3 十六进制数转换为BCD码
4.3.1 十六进制数转换为十进制数的人工计算方法
4.3.2 十六进制数转换为BCD码的编程方法
4.3.3 除OAH取余法的十六进制转BCD码程序
4.3.4 连乘2法的十六进制转BCD码程序
4.4 十六进制数转BCD码程序实验
4.4.1 实验目的
4.4.2 实验准备
4.4.3 必做实验
4.4.4 选做实验
4.4.5 思考题
4.5 BCD码转换为十六进制数
4.5.1 十进制数转换为十六进制数的人工计算方法
4.5.2 BCD码转换为十六进制数的编程方法
4.5.3 连乘0AH法的BCD码转十六进制数程序
4.6 BCD码转十六进制数程序实验
4.6.1 实验目的
4.6.2 实验准备
4.6.3 必做实验
4.6.4 选做实验
4.6.5 思考题
4.7 十六进制数与BCD码转换方法总结
4.7.1 整数转换编程方法的数学原理分析
4.7.2 整数转换编程方法与人工转换方法比较
4.7.3 小数转换编程方法分析
习题
第五章 系统调用程序
5.1 功能调用和中断调用
5.1.1 中断指令和中断返回指令
5.. 功能调用
5.1.3 中断调用
5.2 键盘输入和屏幕显示功能调用
5.2.1 键盘输入功能调用
5.2.2 屏幕显示功能调用
5.2.3 常用ASCII
5.2.4 ASCII与十进制数和十六进制数的转换
5.3 键盘输入和屏幕显示程序
5.3.1 编程思路
5.3.2 程序流程
5.3.3 程序清单
5.4 键盘输入屏幕显示程序实验
5.4.1 实验目的
5.4.2 实验准备
5.4.3 必做实验
5.4.4 选做实验
5.4.5 思考题
习题
第六章 表处理程序
6.1 串操作指令及重复前缀
6.1.1 串操作指令
6.. 串重复前缀
6.1.3 简单应用举例
6.2 无符号数和带符号数条件跳转指令
6.2.1 无符号数条件跳转指令
6.2.2 带符号数条件跳转指令
6.3 查表程序和顺序搜索程序
6.3.1 求正弦函数程序
6.3.2 顺序搜索程序
6.4 表处理程序实验(1)
6.4.1 实验目的
6.4.2 实验准备
6.4.3 必做实验
6.4.4 选做实验
6.4.5 思考题
6.5 排序程序和对分搜索程序
6.5.1 排序程序
6.5.2 对分搜索程序
6.6 表处理程序实验(2)
6.6.1 实验目的
6.6.2 实验准备
6.6.3 必做实验
6.6.4 选做实验
6.6.5 思考题
习题
第七章 子程序及其参数传递
7.1 子程序调用和返回指令
7.1.1 调用指令
7.. 返回指令
7.1.3 过程定义伪指令
7.1.4 处理机控制指令
7.2 子程序编程基本原理
7.2.1 通用子程序
7.2.2 主程序与子程序间参数传递
7.2.3 保护现场、恢复现场
7.2.4 子程序与宏指令的区别
7.3 子程序与主程序参数传递
7.3.1 寄存器传递
7.3.2 内存变量直接传递
7.3.3 参数表传递和地址表传递
7.3.4 堆栈传递
7.4 子程序参数传递实验
7.4.1 实验目的
7.4.2 实验准备
7.4.3 必做实验
7.4.4 选做实验
7.4.5 思考题
习题
参考文献
Shipping Overview:
• Shipping: Standard Domestic Shipping within the United States charges USD 4.99. Standard International Shipping from United Kingdom, Germany and Japan to the United States charges 14.99.
• Order Processing: Please allow 1-2 business days for order processing and preparation before shipment.
• Domestic Shipping: Orders within the U.S. are shipped via USPS or FedEx, depending on the origin of the product. The average transit time is 3-7 business days.
• International Shipping: Currently, we only ship within the USA.
• Tracking Information: Every order is trackable. You will receive a tracking number once your order has been shipped. Products may be shipped from various global fulfillment centers.
Shipping Delays:
Please note that shipping times may vary due to factors beyond our control, such as weather conditions, natural disasters, or peak holiday periods. While we strive to ensure timely delivery, the exact arrival time cannot be guaranteed and is managed by the shipping carrier.
Shipping Options:
-
Standard Delivery: Most orders are shipped within 3-7 business days. Larger items may utilize LTL shipping for safe handling.
-
Handling Time: We handle shipments on business days (Monday - Friday), with a preparation time of 1-2 days.
-
Additional Charges: Some items require additional shipping charges due to their size, weight, or special handling. These charges are specified on the product pages and are not eligible for shipping discounts.
-
Exclusions: Gift cards, packaging, taxes, and prior purchases do not count toward the minimum purchase requirement for free shipping. This offer is valid only for shipments to U.S. addresses, including Puerto Rico.
Delivery Details:
-
Estimates: Standard shipping within the US typically takes 3-7 business days. These are estimates and not guarantees.
-
Shipping Restrictions: We ship to all 50 states, Washington, DC, U.S. territories, and APO/FPO/DPO addresses. Shipping options vary based on the delivery address.
-
Remote Areas: Shipments to remote areas may incur additional charges or require pickup from a nearby shipping partner’s location.
Shipping Confirmation:
You will receive a shipping confirmation email with a tracking number as soon as your order is dispatched. If you do not receive this email immediately, please be assured that your items will arrive within the estimated delivery window provided at checkout.
Order Modifications:
If you need to cancel or modify your order, please contact our customer support immediately.
Issues with Delivery:
If your order shows as delivered but you have not received it, please contact the shipping carrier directly to resolve the issue. For persistent problems, contact our customer service at cs@everymarket.com.
Customer Support:
Our team is available 24/7 to assist you with any questions or concerns regarding your order. We are committed to ensuring a smooth shopping experience.
Return & Refund Policy Overview
Please review our return and refund policies below to ensure a smooth transaction process.
Return Policy
-
Duration: You have 30 days from receiving your item to initiate a return.
-
Condition: Items must be unworn, unwashed, with original tags and packaging intact.
-
Shipping Costs: Customers are responsible for return shipping costs.
-
Packaging: Ensure returned items are well-packaged to avoid damage during transit.
-
Tracking: Use a trackable and insured shipping method as we are not liable for items lost or damaged on return.
-
Initiating a Return: Contact us at cs@everymarket.com to start your return. We will provide a return shipping label and instructions upon approval. Returns without prior approval will not be accepted.
How to Return
-
Method: Returns must be sent back by mail to the address provided in the return instructions.
Return Label
-
Defective Products: Return labels are provided for defective items.
-
Non-Defective Returns: Customers are responsible for obtaining their return shipping label.
Product Conditions for Return
-
Eligible Products: Returns are only accepted for items in new condition.
Nonreturnable Items
Certain items are not eligible for return:
-
Electronic devices after 30 days (e.g., computers, laptops, Kindles)
-
Gift cards, prepaid game cards
-
Perishable goods, live insects, some jewelry, some health and personal care items
-
Customized or personalized products
-
Items with special shipping restrictions
Refund Policy
-
Window: Eligible products may be returned within 30 days of delivery for a refund.
-
Refund Method: Refunds are processed to the original payment method or as store credit for items purchased with gift cards.
-
Processing Time: Refunds are processed within 3-5 business days after we receive the return; please allow additional time for shipping and bank processing.
Claims
Inspect your order upon arrival and report any defects, damages, or incorrect items immediately to allow us to address the issue. For claims, contact our support team with details of the issue.
Exchange Policy
For the quickest service, return your original item and place a new order for the desired product once your return is accepted.
Return Address
EveryMarket Customer Service 2101 E Terra Ln, O'Fallon, MO 63366
Customer Support
Available 24/7 for any questions or assistance needed:
-
Phone: +1 636-312-5925
-
Email: cs@everymarket.com

- 作者:林聪仁
- 著:林聪仁
- 装帧:平装
- 印次:1
- 定价:20.00
- ISBN:9787561540169
- 出版社:厦门大学出版社
- 开本:16开
- 印刷时间:暂无
- 语种:暂无
- 出版时间:2011-09-01
- 页数:暂无
- 外部编号:1200111743
- 版次:1
- 成品尺寸:暂无

章 汇编语言程序设计基础
1.1 二进制数和十六进制数
1.1.1 二进制数
1.. 十六进制
1.1.3 十进制数与二进制、十六进制数的转换
. 无符号数和带符号数
.. 无符号数
.. 带符号数
.. 真值与机器数的转换
.. 真值与机器数的关系
..5 计算机中带符号数为什么要用补码
1.3 微机基本原理
1.3.1 微机基本结构框图
1.3.2 指令的基本执行过程
1.4 8086CPU
1.4.1 微处理器概述
1.4.2 8086CPU内部结构
1.4.3 8086寄存器
1.4.4 标志寄存器
1.4.5 判断OF标志的三种方法
1.4.6 标志位小结
1.5 DEUBG操作(一)
1.5.1 DEBUG的启动
1.5.2 退出DEBUG
1.5.3 DEBUG的命令
1.5.4 寄存器命令
1.5.5 汇编命令
1.5.6 单步运行命令
1.6 判断标志位实验
1.6.1 实验目的
1.6.2 实验准备
1.6.3 必做实验
1.6.4 选做实验
1.6.5 思考题
1.7 计算机中的十进制数及其运算原理
1.7.1 BCD码
1.7.2 计算机中BCD码的运算
1.8 BCD码运算实验
1.8.1 实验目的
1.8.2 实验准备
1.8.3 必做实验
1.8.4 选做实验
1.8.5 思考题
习题
第二章 汇编语言程序设计入门
2.1 寻址方式
2.1.1 隐含寻址
2.. 立即寻址
2.1.3 寄存器寻址
2.1.4 段寄存器寻址
2.1.5 I/O端口寻址
2.1.6 转移地址的寻址
2.1.7 存储器操作数的寻址
2.2 数据传送指令
2.2.1 通用数据传送指令
2.2.2 交换指令
2.2.3 堆栈操作指令
2.2.4 查表指令
2.2.5 输入/输出指令
2.2.6 地址传送指令
2.2.7 标志位传送指令
2.2.8 数据传送指令对标志位的影响
2.3 汇编语言源程序结构
2.3.1 分段结构
2.3.2 语句格式
2.3.3 变量和标号
2.3.4 操作数、表达式和操作符
2.3.5 用指令
2.4 汇编语言程序上机过程
2.4.1 编辑
2.4.2 汇编
2.4.3 连接
2.4.4 调试(DEBUG操作(二))
2.5 指令错误分析及寻址方式实验
2.5.1 实验目的
2.5.2 实验准备
2.5.3 必做实验
2.5.4 选做实验
2.5.5 思考题
习题
第三章 算术运算程序
3.1 跳转指令
3.1.1 无条件跳转指令
3.. 条件跳转指令
3.1.3 循环控制指令
3.2 算术运算指令
3.2.1 二进制运算指令
3.2.2 BCD码调整指令
3.3 多字节加/减运算程序
3.3.1 多字节加/减运算程序的基本结构
3.3.2 多字节二进制加法程序
3.3.3 程序调试(DEBUG操作(三))
3.4 多字节加/减程序实验
3.4.1 实验目的
3.4.2 实验准备
3.4.3 必做实验
3.4.4 选做实验
3.4.5 思考题
3.5 多字节除法运算程序
3.5.1 多字节除法程序基本编程方法
3.5.2 除法指令法的除法程序
3.5.3 被除数左移法的除法程序
3.6 多字节除法程序实验
3.6.1 实验目的
3.6.2 实验准备
3.6.3 必做实验
3.6.4 选做实验
3.6.5 思考题
3.7 多字节乘法运算程序
3.7.1 多字节乘法程序的基本编程方法
3.7.2 乘法指令法的多字节乘法程序
3.7.3 阶乘程序
3.8 多字节乘法程序实验
3.8.1 实验目的
3.8.2 实验准备
3.8.3 必做实验
3.8.4 选做实验
3.8.5 思考题
习题
第四章 代码转换程序
4.1 逻辑运算指令
4.1.1 双操作数逻辑运算指令
4.. 单操作数逻辑运算指令
4.2 移位指令
4.2.1 逻辑移位指令
4.2.2 算术移位指令
4.2.3 循环移位指令
4.2.4 带CF循环移位指令
4.3 十六进制数转换为BCD码
4.3.1 十六进制数转换为十进制数的人工计算方法
4.3.2 十六进制数转换为BCD码的编程方法
4.3.3 除OAH取余法的十六进制转BCD码程序
4.3.4 连乘2法的十六进制转BCD码程序
4.4 十六进制数转BCD码程序实验
4.4.1 实验目的
4.4.2 实验准备
4.4.3 必做实验
4.4.4 选做实验
4.4.5 思考题
4.5 BCD码转换为十六进制数
4.5.1 十进制数转换为十六进制数的人工计算方法
4.5.2 BCD码转换为十六进制数的编程方法
4.5.3 连乘0AH法的BCD码转十六进制数程序
4.6 BCD码转十六进制数程序实验
4.6.1 实验目的
4.6.2 实验准备
4.6.3 必做实验
4.6.4 选做实验
4.6.5 思考题
4.7 十六进制数与BCD码转换方法总结
4.7.1 整数转换编程方法的数学原理分析
4.7.2 整数转换编程方法与人工转换方法比较
4.7.3 小数转换编程方法分析
习题
第五章 系统调用程序
5.1 功能调用和中断调用
5.1.1 中断指令和中断返回指令
5.. 功能调用
5.1.3 中断调用
5.2 键盘输入和屏幕显示功能调用
5.2.1 键盘输入功能调用
5.2.2 屏幕显示功能调用
5.2.3 常用ASCII
5.2.4 ASCII与十进制数和十六进制数的转换
5.3 键盘输入和屏幕显示程序
5.3.1 编程思路
5.3.2 程序流程
5.3.3 程序清单
5.4 键盘输入屏幕显示程序实验
5.4.1 实验目的
5.4.2 实验准备
5.4.3 必做实验
5.4.4 选做实验
5.4.5 思考题
习题
第六章 表处理程序
6.1 串操作指令及重复前缀
6.1.1 串操作指令
6.. 串重复前缀
6.1.3 简单应用举例
6.2 无符号数和带符号数条件跳转指令
6.2.1 无符号数条件跳转指令
6.2.2 带符号数条件跳转指令
6.3 查表程序和顺序搜索程序
6.3.1 求正弦函数程序
6.3.2 顺序搜索程序
6.4 表处理程序实验(1)
6.4.1 实验目的
6.4.2 实验准备
6.4.3 必做实验
6.4.4 选做实验
6.4.5 思考题
6.5 排序程序和对分搜索程序
6.5.1 排序程序
6.5.2 对分搜索程序
6.6 表处理程序实验(2)
6.6.1 实验目的
6.6.2 实验准备
6.6.3 必做实验
6.6.4 选做实验
6.6.5 思考题
习题
第七章 子程序及其参数传递
7.1 子程序调用和返回指令
7.1.1 调用指令
7.. 返回指令
7.1.3 过程定义伪指令
7.1.4 处理机控制指令
7.2 子程序编程基本原理
7.2.1 通用子程序
7.2.2 主程序与子程序间参数传递
7.2.3 保护现场、恢复现场
7.2.4 子程序与宏指令的区别
7.3 子程序与主程序参数传递
7.3.1 寄存器传递
7.3.2 内存变量直接传递
7.3.3 参数表传递和地址表传递
7.3.4 堆栈传递
7.4 子程序参数传递实验
7.4.1 实验目的
7.4.2 实验准备
7.4.3 必做实验
7.4.4 选做实验
7.4.5 思考题
习题
参考文献
Shipping Overview:
• Shipping: Standard Domestic Shipping within the United States charges USD 4.99. Standard International Shipping from United Kingdom, Germany and Japan to the United States charges 14.99.
• Order Processing: Please allow 1-2 business days for order processing and preparation before shipment.
• Domestic Shipping: Orders within the U.S. are shipped via USPS or FedEx, depending on the origin of the product. The average transit time is 3-7 business days.
• International Shipping: Currently, we only ship within the USA.
• Tracking Information: Every order is trackable. You will receive a tracking number once your order has been shipped. Products may be shipped from various global fulfillment centers.
Shipping Delays:
Please note that shipping times may vary due to factors beyond our control, such as weather conditions, natural disasters, or peak holiday periods. While we strive to ensure timely delivery, the exact arrival time cannot be guaranteed and is managed by the shipping carrier.
Shipping Options:
-
Standard Delivery: Most orders are shipped within 3-7 business days. Larger items may utilize LTL shipping for safe handling.
-
Handling Time: We handle shipments on business days (Monday - Friday), with a preparation time of 1-2 days.
-
Additional Charges: Some items require additional shipping charges due to their size, weight, or special handling. These charges are specified on the product pages and are not eligible for shipping discounts.
-
Exclusions: Gift cards, packaging, taxes, and prior purchases do not count toward the minimum purchase requirement for free shipping. This offer is valid only for shipments to U.S. addresses, including Puerto Rico.
Delivery Details:
-
Estimates: Standard shipping within the US typically takes 3-7 business days. These are estimates and not guarantees.
-
Shipping Restrictions: We ship to all 50 states, Washington, DC, U.S. territories, and APO/FPO/DPO addresses. Shipping options vary based on the delivery address.
-
Remote Areas: Shipments to remote areas may incur additional charges or require pickup from a nearby shipping partner’s location.
Shipping Confirmation:
You will receive a shipping confirmation email with a tracking number as soon as your order is dispatched. If you do not receive this email immediately, please be assured that your items will arrive within the estimated delivery window provided at checkout.
Order Modifications:
If you need to cancel or modify your order, please contact our customer support immediately.
Issues with Delivery:
If your order shows as delivered but you have not received it, please contact the shipping carrier directly to resolve the issue. For persistent problems, contact our customer service at cs@everymarket.com.
Customer Support:
Our team is available 24/7 to assist you with any questions or concerns regarding your order. We are committed to ensuring a smooth shopping experience.
Return & Refund Policy Overview
Please review our return and refund policies below to ensure a smooth transaction process.
Return Policy
-
Duration: You have 30 days from receiving your item to initiate a return.
-
Condition: Items must be unworn, unwashed, with original tags and packaging intact.
-
Shipping Costs: Customers are responsible for return shipping costs.
-
Packaging: Ensure returned items are well-packaged to avoid damage during transit.
-
Tracking: Use a trackable and insured shipping method as we are not liable for items lost or damaged on return.
-
Initiating a Return: Contact us at cs@everymarket.com to start your return. We will provide a return shipping label and instructions upon approval. Returns without prior approval will not be accepted.
How to Return
-
Method: Returns must be sent back by mail to the address provided in the return instructions.
Return Label
-
Defective Products: Return labels are provided for defective items.
-
Non-Defective Returns: Customers are responsible for obtaining their return shipping label.
Product Conditions for Return
-
Eligible Products: Returns are only accepted for items in new condition.
Nonreturnable Items
Certain items are not eligible for return:
-
Electronic devices after 30 days (e.g., computers, laptops, Kindles)
-
Gift cards, prepaid game cards
-
Perishable goods, live insects, some jewelry, some health and personal care items
-
Customized or personalized products
-
Items with special shipping restrictions
Refund Policy
-
Window: Eligible products may be returned within 30 days of delivery for a refund.
-
Refund Method: Refunds are processed to the original payment method or as store credit for items purchased with gift cards.
-
Processing Time: Refunds are processed within 3-5 business days after we receive the return; please allow additional time for shipping and bank processing.
Claims
Inspect your order upon arrival and report any defects, damages, or incorrect items immediately to allow us to address the issue. For claims, contact our support team with details of the issue.
Exchange Policy
For the quickest service, return your original item and place a new order for the desired product once your return is accepted.
Return Address
EveryMarket Customer Service 2101 E Terra Ln, O'Fallon, MO 63366
Customer Support
Available 24/7 for any questions or assistance needed:
-
Phone: +1 636-312-5925
-
Email: cs@everymarket.com
Oops!
Sorry, it looks like some products are not available in selected quantity.