4315
- 收藏
- 点赞
- 分享
- 举报
嵌入式系统词汇表
嵌入式系统词汇表
A
ASIC(专用集成电路)
Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip.
专用集成电路。一个在一个芯片上定制设计的硬件。
address bus (地址总线)
A set of electrical lines connected to the processor and all of the peripherals withwhich itcommunicates. The address bus is used by the processor to select aspecific memory location or register within a particular peripheral. If the address bus contains n electrical lines, the processor can uniquely address up to 2^n such locations.
一个连接处理器与所有外设的,用来通讯的电子线路集。地址总线被处理器用来选择在特定外设中的存储器地址或寄存器。如果地址总线有n条电子线路,处理器能唯一寻址高达2^n的地址空间。
application software(应用软件)
Describes software modules specific to a particular embedded project. Theapplication software is unlikely to be reusable across embedded platforms, simplybecause each embedded system has a different application.
用来描述一个特定的嵌入式项目中的某一软件模块。应用软件不象可重用的交叉嵌入式平台,只是因为每一个嵌入式系统有不同的应用软件。
assembler(汇编编译器)
A software development tool that translates human-readable assembly languageprograms into machine-language instructions that the processor can understandand execute.
一个能把人可读的汇编语言程序转换到处理器可理解和运行的机器指令的软件开发工具。
assembly language(汇编语言)
A human-readable form of a processor"s instruction set. Most processor-specific functions must be written in assembly language.
一种人可读的处理器指令集的形式。大多数处理器相关的功能必须用汇编语言编写。
B
BSP(板卡支持包)
See board support package.
见board support package。
binary semaphore(二元信号)
A type of semaphore with just two states. Also called a mutex.
一种只有两种状态的信号。也叫互斥信号。
board support package(板卡支持包)
Part of a software package that is processor or platform-dependent. Typically,sample source code for the board support package is provided by the package developer. The sample code must be modified as necessary, compiled, and linked with the remainder of the software package.
软件包的具有平台依赖性的那一部分。典型地,板卡支持包的样例源程序由包开发者提供。样例源程序必须能在需要时被修改、编译并与软件包的剩下的部分连接起来。
bond-out processor (外合处理器)
A special version of a processor that has some of the internal signals brought out to external pins. A bond-out processor is most often found within an emulator and is never intended to be used in a production system.
一种特殊版本的处理器,它有一些,内部的信号能传达到外置的针脚上。一个外合处理器绝大多数情况下只用在模拟器上,从来不会被特意用在产品系统上。
Breakpoint (断点)
A location in a program at which execution is to be stopped and control of the processor switched to the debugger. Mechanisms for creating and removing breakpoints are provided by most debugging tools.
一个在程序中的地址,在那里程序的执行被停止,并且处理器的控制转换到了除错程序。大多数除错工具提供增加与删除一个断点的机制。
C
CISC(复杂指令集计算机)
Complex Instruction Set Computer. Describes the architecture of a processor family. CISC processors generally feature variable-length instructions, multiple addressing formats, and contain only a small number of general-purpose registers. Intel"s 80x86 family is the quintessential example of CISC. Contrast with RISC.
复杂指令集计算机。对一种处理器架构的描述。CISC处理器一般产生变长的指令,多种地址格式,并且仅仅有少量的通用寄存器。Intel的80x86家族是是典型的CISC处理器。相对于RISC而言。
CPU(中央处理器)
Central Processing Unit. The part of a processor that executes instructions.
中央处理器。处理器中执行指令的那一部分。
Compiler(编译器)
A software development tool that translates high-level language programs into the machine-language instructions that a particular processor can understand and execute.
把高级编程语言程序转换到只有特定的处理器能了解和执行的机器指令的一种软件开发包。
context (上下文)
The current state of the processor"s registers and flags.
处理器当前的状态和标志。
A
ASIC(专用集成电路)
Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip.
专用集成电路。一个在一个芯片上定制设计的硬件。
address bus (地址总线)
A set of electrical lines connected to the processor and all of the peripherals withwhich itcommunicates. The address bus is used by the processor to select aspecific memory location or register within a particular peripheral. If the address bus contains n electrical lines, the processor can uniquely address up to 2^n such locations.
一个连接处理器与所有外设的,用来通讯的电子线路集。地址总线被处理器用来选择在特定外设中的存储器地址或寄存器。如果地址总线有n条电子线路,处理器能唯一寻址高达2^n的地址空间。
application software(应用软件)
Describes software modules specific to a particular embedded project. Theapplication software is unlikely to be reusable across embedded platforms, simplybecause each embedded system has a different application.
用来描述一个特定的嵌入式项目中的某一软件模块。应用软件不象可重用的交叉嵌入式平台,只是因为每一个嵌入式系统有不同的应用软件。
assembler(汇编编译器)
A software development tool that translates human-readable assembly languageprograms into machine-language instructions that the processor can understandand execute.
一个能把人可读的汇编语言程序转换到处理器可理解和运行的机器指令的软件开发工具。
assembly language(汇编语言)
A human-readable form of a processor"s instruction set. Most processor-specific functions must be written in assembly language.
一种人可读的处理器指令集的形式。大多数处理器相关的功能必须用汇编语言编写。
B
BSP(板卡支持包)
See board support package.
见board support package。
binary semaphore(二元信号)
A type of semaphore with just two states. Also called a mutex.
一种只有两种状态的信号。也叫互斥信号。
board support package(板卡支持包)
Part of a software package that is processor or platform-dependent. Typically,sample source code for the board support package is provided by the package developer. The sample code must be modified as necessary, compiled, and linked with the remainder of the software package.
软件包的具有平台依赖性的那一部分。典型地,板卡支持包的样例源程序由包开发者提供。样例源程序必须能在需要时被修改、编译并与软件包的剩下的部分连接起来。
bond-out processor (外合处理器)
A special version of a processor that has some of the internal signals brought out to external pins. A bond-out processor is most often found within an emulator and is never intended to be used in a production system.
一种特殊版本的处理器,它有一些,内部的信号能传达到外置的针脚上。一个外合处理器绝大多数情况下只用在模拟器上,从来不会被特意用在产品系统上。
Breakpoint (断点)
A location in a program at which execution is to be stopped and control of the processor switched to the debugger. Mechanisms for creating and removing breakpoints are provided by most debugging tools.
一个在程序中的地址,在那里程序的执行被停止,并且处理器的控制转换到了除错程序。大多数除错工具提供增加与删除一个断点的机制。
C
CISC(复杂指令集计算机)
Complex Instruction Set Computer. Describes the architecture of a processor family. CISC processors generally feature variable-length instructions, multiple addressing formats, and contain only a small number of general-purpose registers. Intel"s 80x86 family is the quintessential example of CISC. Contrast with RISC.
复杂指令集计算机。对一种处理器架构的描述。CISC处理器一般产生变长的指令,多种地址格式,并且仅仅有少量的通用寄存器。Intel的80x86家族是是典型的CISC处理器。相对于RISC而言。
CPU(中央处理器)
Central Processing Unit. The part of a processor that executes instructions.
中央处理器。处理器中执行指令的那一部分。
Compiler(编译器)
A software development tool that translates high-level language programs into the machine-language instructions that a particular processor can understand and execute.
把高级编程语言程序转换到只有特定的处理器能了解和执行的机器指令的一种软件开发包。
context (上下文)
The current state of the processor"s registers and flags.
处理器当前的状态和标志。
我来回答
回答0个
时间排序
认可量排序
暂无数据
或将文件直接拖到这里
悬赏:
E币
网盘
* 网盘链接:
* 提取码:
悬赏:
E币
Markdown 语法
- 加粗**内容**
- 斜体*内容*
- 删除线~~内容~~
- 引用> 引用内容
- 代码`代码`
- 代码块```编程语言↵代码```
- 链接[链接标题](url)
- 无序列表- 内容
- 有序列表1. 内容
- 缩进内容
- 图片![alt](url)
相关问答
-
02008-07-12 18:57:53
-
02008-07-12 18:56:19
-
02012-12-24 15:05:11
-
2008-07-12 19:00:25
-
2008-07-12 18:58:44
-
2018-07-06 16:02:29
-
02008-07-19 12:55:54
-
02013-11-18 15:31:11
-
02018-12-14 15:11:04
-
2012-12-04 13:52:20
-
02008-07-12 19:17:39
-
02008-08-14 00:23:28
-
2013-12-15 13:08:37
-
2012-12-24 15:33:12
-
02016-06-22 23:45:46
-
2018-12-13 11:17:04
-
2019-04-03 15:12:44
-
2017-04-30 09:57:46
-
2012-12-24 15:16:39
-
2017-06-05 15:20:33
更多相似问答
点击登录
-- 积分
-- E币
提问
—
收益
—
被采纳
—
我要提问
切换马甲
上一页
下一页
悬赏问答
-
5RK3588的DPHY0接lt6911uxe转HDMI抓帧分辨率不对
-
20求rv1106板子的sdk包或者开发板资料
-
10ss928烧录uboot失败
-
10求助,3588调试imx586和ov50c40时,按照瑞芯微的单摄8k配置好设备树后,驱动配置的8k分辨率的,但是只能抓到4k的图,且颜色偏粉
-
50帮忙解决个交叉编译的问题
-
20帮忙交叉编译个源码
-
5Hi3516CV610 如何使用SD卡升级固件
-
5cat /dev/logmpp 报错 <3>[ vi] [func]:vi_send_frame_node [line]:99 [info]:vi pic queue is full!
-
50如何获取vpss chn的图像修改后发送至vo
-
5FPGA通过Bt1120传YUV422数据过来,vi接收不到数据——3516dv500
举报反馈
举报类型
- 内容涉黄/赌/毒
- 内容侵权/抄袭
- 政治相关
- 涉嫌广告
- 侮辱谩骂
- 其他
详细说明
提醒
你的问题还没有最佳答案,是否结题,结题后将扣除20%的悬赏金
取消
确认
提醒
你的问题还没有最佳答案,是否结题,结题后将根据回答情况扣除相应悬赏金(1回答=1E币)
取消
确认