A program written in assembly language is called a source program, which is a series of human-readable computer language instructions; the source program cannot be directly executed on the machine, and the machine language obtained after assembly or compilation is called the target program, the target program can be executed directly on the machine.
A program written in assembly language or high-level language is generally called a source program. The source program cannot be executed directly on the machine. The machine language obtained after the source program is assembled or compiled is called the target program, and the target program can be directly executed on the machine.
Source program, also known as source code, refers to an uncompiled text file written in accordance with certain programming language specifications. It refers to a series of human-readable computer language instructions.
In modern programming languages, source programs can appear in the form of books or tapes or other carriers, but the most commonly used format is text files. The purpose of this typical format is to compile a computer program.
The ultimate goal of a computer source program is to translate human-readable text into binary instructions that a computer can execute. This process is called compilation and is completed through a compiler.
The source program file type refers to the special encoding method used when storing the source program, which is easy to read and identify. Text files are the most commonly used file type, but many high-level languages and assembly languages have their own file types. It is generally customary to save them in high-level language or assembly language file types, mainly for the convenience of later compilation by the compiler.
The above is the detailed content of What is a program written in assembly language called?. For more information, please follow other related articles on the PHP Chinese website!