org is a file called by the game system. Generally speaking, it cannot be opened except for this game. In assembly language, org is an instruction, and its function is to tell the assembler that at the beginning When executing, load a certain piece of machine language to the address in the memory.
#The operating environment of this article: windows10 system, thinkpad t480 computer.
org is a file called by the game system. Generally speaking, it cannot be opened except for this game.
ORG is an instruction in assembly language. Its function is to tell the assembler which address in the memory to load a certain piece of machine language at the beginning of execution. Without it, some instructions cannot be translated and executed correctly. Since this instruction is not a direct instruction in machine language, it is also called a pseudo-instruction.
In addition, the meaning of some command symbols also changes accordingly.
For example: RESB 0x1fe-$
The meaning of this instruction is to fill in 0x00 from now on until 0x001fe.
With the ORG instruction, the dollar The meaning of the symbol "$" also changes accordingly. It no longer refers to the bytes of the output file, but represents the memory address to be read.
ORG is the abbreviation of Origin: starting address source. At the beginning of the assembly language source program, an ORG pseudo-instruction is usually used to specify the starting address of the program. If the ORG specification is not used, the compiled target program will start from 0000H.
Extended knowledge: Can the org files on the mobile phone be deleted?
The org files on the mobile phone cannot be deleted. ORG is a category top-level domain name. After deletion, it will cause us harm. mobile phones are affected.
Click the "File Management" tab on the mobile desktop.
In the file management interface, click the "Search Files" option above to enter the search interface.
Then, in the search interface, click the "Search" button above, then enter "org", and then click the "OK" button below.
Next, in this interface, we can find many files with the org suffix. Press and hold one of the files with your finger.
Finally, in the interface that appears, we can perform operations such as "share", "delete", "copy" and "move" on the selected "org" file. Click the corresponding button below to complete the corresponding operation.
Recommended: "Programming Video"
The above is the detailed content of What format file is org?. For more information, please follow other related articles on the PHP Chinese website!