以下为句子列表:
英文: A compiler translates a programming language to machine language. A machine language consists of primitive operations that a computer can perform directly.
中文: 编译器把程序语言转化成机器语言。机器语言是由计算机可以直接执行的原语操作组成的。
更详细...
英文: A program that translates from machine language to assembly language, often to decipher existing machine language programs by generating symbolic code listings.
中文: 将机器语言翻译成汇编语言的程序,一般通过产生符号代码的清单来翻译已有的机器语言程序。
更详细...
英文: A typical instruction in a machine language might read 10010 1100 1011 and mean add the contents of storage register A to the contents of storage register B.
中文: 机器语言中的一条典型的指令可能是1001011001011,意思是将存储寄存器A的内容加到存储寄存器B的内容中。
更详细...
英文: An instruction in machine language generally tells the computer four things: (1) where to find one or two numbers or simple pieces of data in the main computer memory (Random Access Memory, or RAM), (2) a simple operation to perform, such as adding the tw
中文: 机器语言中的一条指令通常告诉计算机4件事情:(1)到计算机主存储器(随机访问存储器)的哪个位置去找一或两个数字或者简单的数据段;(2)要执行的一个简单操作,例如将两个数字加起来;(3)将这个简单操作的结果存放在主存储器的什么位置;以及(4)到哪里找要执行的下一条指令。
更详细...
英文: As you might infer from the name high-level language,there are also [b]low-level languages[/b], sometimes referred to as machine language or assembly language.
中文: 或许你会根据“高级语言”的名称来推断,也存在低级语言,有时也称为机器语言或者汇编语言。
更详细...
|