嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) pdf 夸克云 tct umd 下载 2025 azw3 kindle

嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张)电子书下载地址
- 文件名
- [epub 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) epub格式电子书
- [azw3 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) azw3格式电子书
- [pdf 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) pdf格式电子书
- [txt 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) txt格式电子书
- [mobi 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) mobi格式电子书
- [word 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) word格式电子书
- [kindle 下载] 嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张) kindle格式电子书
内容简介:
本书是对高等院校本科二年级计算机组成原理与汇编语言程序设计的传统教材的全新替代版。本书以实践中常运用的方式讲解汇编语言——实现小型、快速或特殊目的的例程,这些例程由主程序(高级语言编写,如C)调用。通过运用嵌入式软件环境,本书介绍多线程程序设计、可抢占式系统与非可抢占式系统、共享资源和调度,从而为操作系统、实时系统、计算机网络及基于多处理器的设计等后续课程提供了坚实的基础。
本书将帮助读者:理解通常为人们所忽视的二进制表示的后果和局限性问题;运用定点(而非浮点)实数实现快速实数运算;加强对于作用域、参数传递、递归和内存分配的理解;运用C语言的特性(如位操作和变量访问),这些特性在嵌入式软件中广泛应用;编写Intel x86保护模式下的汇编函数,由C程序调用;估算不同类型输入/输出程序设计的*数据速率和等待时间;管理多线程、共享资源和临界区;开发程序设计实例,以避免优先级倒置、死锁和共享内存问题。
本书适用于高等院校工科各专业本科嵌入式计算机系统程序设计、C语言程序设计及汇编语言程序设计类课程,也可供相关技术人员学习参考。
书籍目录:
Preface
Chapter 1 Introduction
1.1 What is an Embedded System?
1.2 What's Unique About the Design Goals for Embedded Software?
1.3 What Does "Real-Time" Mean?
1.4 What Does "Multitasking" Mean?
1.5 How Powerful Are Embedded Processors?
1.6 What Programming Languages Are Used?
1.7 What Is a "Real-Time Kernel"?
1.8 How Is Building an Embedded Application Unique?
1.9 How Big Are Typical Embedded Programs?
1.10 The Software Used in This Book
Problems
Chapter 2 Data Representation
2.1 Fixed-Precision Binary Numbers
2.1.1 Positional Number Systems
2.1.2 Binary-to-Decimal Conversion
2.1.3 Decimal-to-Binary Conversion
2.1.4 Counting
2.1.5 Fixed Precision and Rollover
2.1.6 Hexadecimal Representation
2.2 Binary Representation of Integers
2.2.1 Signed Integers
2.2.2 Positive and Negative Representati*** of the Same Magnitude
2.2.3 Interpreting the Value of a 2's-Complement Number
2.2.4 More on Range and Overflow
2.2.5 2's Complement and Hardware Complexity
2.3 Binary Representation of Real Numbers
2.3.1 Fixed-Point Representation
2.3.2 Fixed-Point Using a Universal 16.16 Format
2.3.3 Fixed-Point Using a Universal 32.32 Format
2.3.4 Floating-Point Representation
2.4 ASCII Representation of Text
2.5 Binary-Coded Decimal (BCD)
Problems
Chapter 3 Getting the Most Out of C
3.1 Integer Data Types
3.2 Mixing Data Types
3.3 Useful Typedefs and Defines
3.4 Manipulating Bits in Memory
3.4.1 Testing Bits
3.4.2 Setting, Clearing, and Inverting Bits
3.4.3 Extracting Bits
3.4.4 Inserting Bits
3.5 Manipulating Bits in I/O Ports
3.5.1 Write-Only I/O Ports
3.5.2 Ports Differentiated by Reads Versus Writes
3.5.3 Ports Differentiated by Sequential Access
3.5.4 Ports Differentiated by Bits in the Written Data
3.6 Accessing Memory-Mapped I/O Devices
3.6.1 Accessing Data Through a Pointer
3.6.2 Arrays, Pointers, and the "Address of" ***
3.7 Structures
3.7.1 Packed Structures
3.7.2 Bit Fields
3.8 Variant Access
3.8.1 Casting the Address of an Object
3.8.2 Using Uni***
Problems
Chapter 4 A Programmer's View of Computer Organization
4.1 Memory
4.2 The Central Processing Unit (CPU)
4.2.1 The Arithmetic and Logic Unit (ALU)
4.2.2 Other Registers
4.2.3 The Control Unit
4.3 Input/Output (I/O)
4.4 Introduction to the Intel Architecture
4.4.1 Instruction Formats
4.4.2 Instruction Operands
4.4.3 Operand Restricti***
4.4.4 Registers
4.4.5 The Stack
4.5 The Intel Real Mode Architecture
4.5.1 Segmented Addressing
4.5.2 Addressing Modes
4.6 The Intel Protected Mode Architecture
4.6.1 Segment Registers and The Global Descriptor Table
4.6.2 The Flat Memory Model
4.6.3 Addressing Modes
4.7 Operand and Address-Size Override Prefixes
4.8 The Intel Data Manipulation Instructi***
4.8.1 Data Movement, Stack, and I/O Instructi***
4.8.2 Arithmetic Instructi***
4.8.3 Bitwise Instructi***
4.8.4 Shift Instructi***
Problems
Chapter 5 Mixing C and Assembly
5.1 Programming in Assembly
5.2 Register Usage Conventi***
5.3 Typical Use of Addressing Opti***
5.3.1 Accessing Data Whose Address is a C***tant
5.3.2 Accessing Data Whose Address is a Variable
5.4 Instruction Sequencing
5.4.1 Compound Conditionals
5.4.2 If-Then-Else Statements
5.4.3 Building Loops
5.4.4 Faster Loops with String Instructi***
5.5 Procedure Call and Return
5.6 Parameter Passing
5.7 Retrieving Parameters
5.8 Everything is Pass by Value
5.9 Temporary Variables
Problems
Chapter 6 Input/Output Programming
6.1 The Intel I/O Instructi***
6.2 Synchronization, Transfer Rate, and Latency
6.3 Polled Waiting Loops
*** Interrupt-Driven I/O
***.1 The Hardware Resp***e
***.2 The Interrupt Service Routine
***.3 Programmable Interrupt Controllers
***.4 Buffers and Queues
***.5 Writing Interrupt Service Routines in Assembly
***.6 Writing Interrupt Service Routines in C
***.7 Nonmaskable Interrupts
***.8 Software Interrupts
***.9 Excepti***
6.5 Direct Memory Access
6.5.1 Double Buffering
6.6 Comparison of Methods
Problems
Chapter 7 Concurrent Software
7.1 Foreground/Background Systems
7.1.1 Thread State and Serialization
7.1.2 Managing Latency
7.1.3 Preventing Interrupt Overrun
7.1.4 Moving Work into the Background
7.2 Multithreaded Programming
7.2.1 Concurrent Execution of Independent Threads
7.2.2 Context Switching
7.2.3 Nonpreemptive (Cooperative) Multitasking
7.2.4 Preemptive Multitasking
7.3 Shared Resources and Critical Secti***
7.3.1 Disabling Interrupts
7.3.2 Disabling Task Switching
7.3.3 Spin Locks
7.3.4 Mutex Objects
7.3.5 Semaphores
Problems
Chapter 8 Scheduling
8.1 Thread States
8.2 Pending Threads
8.3 Context Switching
8.4 Round-Robin Scheduling
8.5 Priority-Based Scheduling
8.5.1 Priority Inversion
8.5.2 The Priority Inheritance Protocol
8.5.3 The Priority Ceiling Protocol
8.6 Assigning Priorities
8.6.1 Deadline-Driven Scheduling
8.6.2 Rate-Monotonic Scheduling
8.7 Deadlock
8.8 Watchdog Timers
Problems
Chapter 9 Memory Management
9.1 Objects in C
9.2 Scope
9.2.1 Refining Local Scope
9.2.2 Refining Global Scope
9.3 Lifetime
9.4 Automatic Allocation
9.4.1 Storage Class "Register"
9.5 Static Allocation
9.6 Three Programs to Distinguish Static from Automatic
9.6.1 Object Creation
9.6.2 Object Initialization
9.6.3 Object Destruction
9.7 Dynamic Allocation
9.7.1 Fragmentation
9.7.2 Memory Allocation Pools
9.8 Automatic Allocation with Variable Size (alloca)
9.8.1 Variable-Size Arrays
9.9 Recursive Functi*** and Memory Allocation
Problems
Chapter 10 Shared Memory
10.1 Recognizing Shared Objects
10.1.1 Shared Global Data
10.1.2 Shared Private Data
10.1.3 Shared Functi***
10.2 Reentrant Functi***
10.3 Read-Only Data
10.3.1 Type Qualifier "c***t"
10.4 Coding Practices to Avoid
10.4.1 Functi*** That Keep Internal State in Local Static Objects
10.4.2 Functi*** That Return the Address of a Local Static Object
10.5 Accessing Shared Memory
10.5.1 The Effect of Processor Word Size
10.5.2 Read-Only and Write-Only Access
10.5.3 Type Qualifier "volatile"
Problems
Chapter 11 System Initialization
11.1 Memory Layout
11.2 The CPU
11.2.1 Setting Up a Flat Memory Model
11.2.2 Switching into Protected Mode
11.3 C Run-Time Environment
11.3.1 Copying from ROM to RAM
11.3.2 Zeroing Uninitialized Statics
11.3.3 Setting Up a Heap
11.4 System Timer
11.4.1 Timer 0: Timer Tick
11.4.2 Timer 1: Memory Refresh
11.4.3 Timer 2: Speaker Frequency
11.5 Interrupt System
11.5.1 Initializing the IDT
11.5.2 Initializing the 8259 PICs
11.5.3 Installing a New Interrupt Service Routine
Appendix A: Contents of the CD-ROM
Appendix B: The DJGPP C/C++ Compiler
Installation
Compilation
On-Line Documentation (Info)
Appendix C: The NA*** Assembler
Installation
Running NA***
Appendix D: Programming Projects
Files Required from the CD-ROM for All Applicati***
Files Required for Nonpreemptive Multithreaded Applicati***
Files Required for Preemptive Multithreaded Applicati***
Compiling and Assembling Your Embedded Application
Linking Your Embedded Application
Preparing the Boot Diskette
Running Your Embedded Application
Appendix E: The LIBEPC Library
Memory Layout and Initialization
Display Functi*** (display.c)
Window Functi*** (window.c)
Keyboard Functi*** (keyboard.c)
Speaker Functi*** (speaker.c)
Timer Functi*** (timer.c, cycles.asm)
Interrupt Vector Access Functi*** (init-idt.c)
Dynamic Memory Allocation Functi*** (heap.c)
Fixed Point (fixedpt.asm)
Interfunction Jumps (setjmp.asm)
Miscellaneous Functi*** (init-crt.c)
Appendix F: The Boot Loader
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
暂无原文赏析,正在全力查找中!
其它内容:
书籍介绍
本书是对高等院校本科二年级计算机组成原理与汇编语言程序设计的传统教材的全新替代版。本书以实践中最常运用的方式讲解汇编语言——实现小型、快速或特殊目的的例程,这些例程由主程序(高级语言编写,如C)调用。通过运用嵌入式软件环境,本书介绍多线程程序设计、可抢占式系统与非可抢占式系统、共享资源和调度,从而为操作系统、实时系统、计算机网络及基于多处理器的设计等后续课程提供了坚实的基础。
本书将帮助读者:理解通常为人们所忽视的二进制表示的后果和局限性问题;运用定点(而非浮点)实数实现快速实数运算;加强对于作用域、参数传递、递归和内存分配的理解;运用C语言的特性(如位操作和变量访问),这些特性在嵌入式软件中广泛应用;编写Intel x86保护模式下的汇编函数,由C程序调用;估算不同类型输入/输出程序设计的最大数据速率和等待时间;管理多线程、共享资源和临界区;开发程序设计实例,以避免优先级倒置、死锁和共享内存问题。
本书适用于高等院校工科各专业本科嵌入式计算机系统程序设计、C语言程序设计及汇编语言程序设计类课程,也可供相关技术人员学习参考。
网站评分
书籍多样性:8分
书籍信息完全性:5分
网站更新速度:5分
使用便利性:9分
书籍清晰度:4分
书籍格式兼容性:7分
是否包含广告:3分
加载速度:5分
安全性:3分
稳定性:5分
搜索功能:8分
下载便捷性:3分
下载点评
- 二星好评(426+)
- 赞(309+)
- 体验还行(67+)
- 值得购买(88+)
- 已买(263+)
- azw3(568+)
- 中评(81+)
- 内涵好书(268+)
下载评价
- 网友 訾***晴:
挺好的,书籍丰富
- 网友 步***青:
。。。。。好
- 网友 屠***好:
还行吧。
- 网友 扈***洁:
还不错啊,挺好
- 网友 詹***萍:
好评的,这是自己一直选择的下载书的网站
- 网友 薛***玉:
就是我想要的!!!
- 网友 权***颜:
下载地址、格式选择、下载方式都还挺多的
- 网友 康***溪:
强烈推荐!!!
- 网友 利***巧:
差评。这个是收费的
- 网友 陈***秋:
不错,图文清晰,无错版,可以入手。
- 网友 郗***兰:
网站体验不错
- 网友 冯***卉:
听说内置一千多万的书籍,不知道真假的
- 网友 温***欣:
可以可以可以
- 网友 寿***芳:
可以在线转化哦
- 网友 通***蕊:
五颗星、五颗星,大赞还觉得不错!~~
喜欢"嵌入式软件基础:语言与汇编的融合(影印版)(附CD-ROM光盘一张)"的人也看了
云溪友议校笺 pdf 夸克云 tct umd 下载 2025 azw3 kindle
RT速发 手把手自媒体创业教学9787515836072 秦佳佳中华工商联合出版社有限责任公司管理 pdf 夸克云 tct umd 下载 2025 azw3 kindle
电子政务与政府管理模式的互动 pdf 夸克云 tct umd 下载 2025 azw3 kindle
土木工程专业英语 pdf 夸克云 tct umd 下载 2025 azw3 kindle
日本手信物语 pdf 夸克云 tct umd 下载 2025 azw3 kindle
最美书海报——2021上海书业海报评选获奖作品集 pdf 夸克云 tct umd 下载 2025 azw3 kindle
CREATIVE PROJECT MANAGEMENT 9780071739337 pdf 夸克云 tct umd 下载 2025 azw3 kindle
【库存两本】老教材创新方案历史高三总复习2023版黑龙江教育出版社RB新老高考转型期高三历史高中生总复习同步练习创新方案历史书 pdf 夸克云 tct umd 下载 2025 azw3 kindle
银行从业资格考试教材2019 银行业法律法规与综合能力(2019年版)(初、中级适用) pdf 夸克云 tct umd 下载 2025 azw3 kindle
嘻哈小天才(6) pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 试题调研 理科综合 第9辑 考前抢分必备 2022年新版-天星教育 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 国际市场营销 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 现货 直說無妨:非常關係2 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 聚能闯关100分期末复习冲刺卷数学九年级上册20秋(北师版) pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 侵权责任法之医疗损害责任三方解读 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 【正版全新】 建筑节能技术 王磊,张洪波主编 南京大学出版社 9787305185526 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- SOM建筑师事务所 (澳)澳大利亚Images 出版集团 编 中国建筑工业出版社,【正版保证】 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 人际沟通与礼仪 pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 刘墉精品书坊(红尘卷) pdf 夸克云 tct umd 下载 2025 azw3 kindle
- 设官为民和君臣道合(唐代官论研究)/西政文库 pdf 夸克云 tct umd 下载 2025 azw3 kindle
书籍真实打分
故事情节:7分
人物塑造:7分
主题深度:9分
文字风格:9分
语言运用:9分
文笔流畅:7分
思想传递:4分
知识深度:9分
知识广度:5分
实用性:5分
章节划分:8分
结构布局:8分
新颖与独特:3分
情感共鸣:8分
引人入胜:7分
现实相关:4分
沉浸感:8分
事实准确性:7分
文化贡献:4分