Is an assembly program a program written in a mixture of multiple languages?
Error, the assembler is not a program written in a mixture of multiple languages. An assembler is a translation program that translates a program written in assembly language into an equivalent machine language program. The input of the assembler is a source program written in assembly language, and the output is a target program expressed in machine language.
Assembly language is a machine-oriented language designed for a specific computer or computer series. It consists of assembly execution instructions and assembly pseudo-instructions.
Although writing programs in assembly language is not as simple and intuitive as high-level programming languages, the assembled target program occupies less memory, has higher operating efficiency, and can directly reference various device resources of the computer. It is usually used to write programs for the core part of the system, or to write program segments that require a lot of running time and require high real-time performance.
Background information
Assembly execution instructions are symbolic representations of machine instructions. The operation codes are represented by mnemonics, and the address codes are directly represented by labels, variable names, constants, etc. express. The assembly execution instructions are translated into machine instructions by the assembler, and the two basically maintain a one-to-one correspondence. Assembly pseudo-instructions, also known as assembly instructions, are used to provide the assembler with user-defined symbols, data types, length of data space, as well as prompt information such as the format and storage location of the target program. Its function is to instruct the assembler how to To assemble. Source codes written in assembly language need to be converted into executable machine code by using the corresponding assembler. This process is called the assembly process.
Many assemblers can recognize labels and symbols that represent addresses and constants, so that characters can be used to represent operands without having to hard-code them. Generally speaking, there is a one-to-one correspondence between a specific assembly language and a specific machine language instruction set.
Many assemblers provide additional support mechanisms for program development, assembly control, and auxiliary debugging. Some assembly language programming tools often provide macros, which are also called macro assemblers.
Assembly language is not widely used for programming like most other programming languages; in practical applications, it is usually used in low-level hardware operations and demanding program optimization. Assembly language is required for drivers, embedded operating systems, and real-time running programs.
Classification
- ##Simple assemblerSimple assembler Also known as "load and execute" assembler. It is widely used due to its simplicity. The characteristic of this kind of assembler is that the assembled machine language program is placed directly in the memory ready for execution. The storage location occupied by the target program is fixed during assembly and cannot be changed later. Therefore, this working method cannot merge multiple independently assembled subprograms into a complete program, and can only call the location that does not conflict with the target program. subroutine in the program library.
- Module assemblerModule assembler is developed to adapt to the module programming method. In addition to overcoming the shortcomings of simple assembly programs, it also provides the ability to design, code and debug different program modules in parallel, and only change the relevant modules when changing the program. Each assembled program module is called an object module, and multiple object modules are combined into a complete executable program by connecting the assembly program.
- Conditional assemblerThe main feature of conditional assembler is the ability to select and assemble certain program segments. It is suitable for writing programs or program packages that are more selective, so that appropriate software can be tailored and compiled according to the needs of users and the configuration of the device. This kind of assembly language usually introduces assembly instructions such as "conditional transfer" and "transfer" to selectively assemble certain program segments or control the processing path of the assembly program according to the assembly conditions specified by the user.
- Macro assemblerMacro assembler The main feature is to add macro processing function in the assembler. It allows users to easily define and use macro instructions, and is suitable for program paragraphs that appear in multiple places in the program, have a certain format, and can be changed by adjusting a few parameters. Using this method not only reduces the length of the program and increases readability, but also when the format of the program paragraph needs to be changed, only the definition part needs to be changed instead of changing every use point.
- High-level assemblerHigh-level assembler An assembler that uses the control statement structure of a high-level programming language. It not only maintains the advantages of assembly language's strong expression ability and high program operation efficiency, but also fully absorbs the advantages of simple and easy-to-read high-level languages. This is because the high-level assembly program allows users to use control statements of high-level programming languages (such as conditional statements, loop statements, functions and procedures) to write the control part of the program, and also allows users to directly use assembly language to directly Control storage allocation, access register hardware, and describe algorithms that are difficult to express in high-level languages.
The first high-level assembler is the PL/360 language assembler developed by N. Worth for the IBM360 system. Its characteristic is that the control part of the program is written using high-level language control statements, while the data processing part is written using IBM360 assembly instructions. . Since then, assemblers similar to ALGOL and FAT, similar to FORTRAN, have appeared one after another.
For more related knowledge, please visit: PHP Chinese website!
The above is the detailed content of Is an assembly program a program written in a mixture of multiple languages?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Characteristics of machine language: difficult to learn, understand, and understand; not universal; requires manual allocation of memory; and runs fastest. The characteristics of assembly language: the execution efficiency of the program is very high, it takes up little storage space, and it runs fast; it lacks versatility and the program is not easy to transplant. Characteristics of high-level languages: easy, certain versatility, and cannot be directly recognized and executed by computers.

The components of assembly language: 1. Transfer instructions, including general data transfer instructions, conditional transfer instructions, etc.; 2. Logical operations, which are used to perform arithmetic and logical operations; 3. Shift instructions, used to operate registers or memory The number is moved a specified number of times; 4. Bit operations, including test instructions BT, bit test and set instructions BTS, etc.; 5. Control transfer, including unconditional transfer instructions JMP, conditional transfer instructions "JCC/JCXZ", etc.; 6. String Operation, used to operate on data strings; 7. Input and output, used to exchange data with peripheral devices.

Differences: 1. Because assembly language is essentially a mnemonic for machine language and is a language that directly faces the CPU, assembly language operates more efficiently than C language; 2. Assembly language has strong controllability of hardware, and C language Hardware controllability is relatively poor; 3. The object code of assembly language is small, and the object code of C language is large; 4. Assembly language is difficult to maintain, but C language is easy to maintain; 5. The portability of assembly language is very poor, and C language is portable. The performance is very good; 6. Assembly language is easier to learn than C language, because assembly language requires a lot of programming knowledge and is very complicated.

Assembly language is not a high-level language; it is a low-level language like machine language. The difference between assembly language and high-level language: 1. The programming efficiency of assembly language is not high, while the programming efficiency of high-level language is higher than that of assembly language; 2. The readability of high-level language is higher than that of assembly language; 3. Assembly language is a Machine language, while high-level language is simplified and close to human natural language.

Programs written in assembly can be used in Linux, but they need to follow the following points: 1. Follow the ABI standard of the Linux system to ensure that the program is compatible with the interface of the operating system; 2. You need to use Linux system calls to access the functions of the operating system. You need to use Specific instructions to trigger system calls; 3. Need to understand the function calling specifications of the C language to correctly use the library functions provided by the Linux operating system to complete some advanced functions; 4. Need to understand the architecture and instruction set of the target computer, and Resources such as registers and memory need to be manually managed.

ROP attack explanation With the continuous development of information technology, network security issues have gradually attracted people's attention. Various new network attack methods emerge in endlessly, and one of the most widely used attack methods is the ROP (Return Oriented Programming) attack. This article will explain in detail the ROP attack. ROP attack (ReturnOrientedProgrammingAttack) is a method that uses the instruction sequence that already exists in the program to construct a new

Differences: 1. Assembly language has high efficiency, while C language has relatively low efficiency; 2. Assembly language has strong controllability of hardware, while C language has poor controllability of hardware; 3. Assembly language target code has a small size, while C language target code has a small size. Large; 4. Assembly language is not easy to maintain, but C language is easy to maintain; 5. Assembly language has poor portability, but C language has good portability, etc.

Assembly programs do not belong to application software, but to system software. System software includes the operating system and a series of basic tools (such as compilers, database management, memory formatting, file system management, etc.); and assembly programs refer to translating programs written in assembly language into equivalent machine language programs The translation program is a language processing program.