answersLogoWhite

0

It depends on the processor. In the 8086/8088, it means

MOV AX,[BX+SI]

LODSB

In the 8085 it means

ADC E

NOP

XRA H

Neither snippet makes any sense, so it must be from some other processor.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What application will be used to convert an assembly language source program into machine language?

An Assembler converts assembly language instructions into machine language.


Is the C language machine dependent or not?

Machine-dependent (generally called "platform-dependent")


What is compiler and assembler?

Both, compiler and assembler, are software tools which translate instructions written in a programming language into executable machine code. (Both will typically require additional tools, such as a linker, in the process.) An assembler recognizes a machine-specific assembly language. This is a low-level language with a one-to-one relationship between language (assembly) instructions and machine code instructions. A compiler recognizes a generally machine-independent language such as the C programming language. These are higher level languages compared to the assembly languages, generally offering a one-to-many relationship between language instructions and expressions, and the resulting machine code instructions.


What is the readable language to computer?

Computers use machine language, which are coded instructions in binary.


How are high speed language converted into machine instructions?

There is no such thing as a high speed language in computing.


One instruction in high level language corresponds to one instruction in machine language?

No. Generally, one instruction in a high level language corresponds to many instructions in machine language.


Why is assembly language considered easier for humans to program than machine language?

Assembly is signficantly shorter and easier to remember than the equivilant machine instructions. Assembly instructions are human readable characters, for which a direct translation exists to the binary machine code instructions. Pseudo example: add <- assembly instruction 1010101010 <- machine instruction


What is assembler in computer?

An assembler is a machine code program that converts low-level symbolic assembly language instructions into machine code. Assembly language is a second generation programming language.


What is an assembler in computing?

An assembler is a machine code program that converts low-level symbolic assembly language instructions into machine code. Assembly language is a second generation programming language.


What is the process of writing specific instructions in computer language called?

A machine code program. Machine code is the native language of the machine and the only language actually understood by the machine. However, program instructions can be written using a high-level programming language that the computer can translate into machine code using another machine code program called a compiler.


State the differences between machine language and assembly language?

Assembly language is a readable way of representing machine language. It consists of mnemonics that can be directly converted to machine language. Assembly language allows easier jump instructions with the usage of labels which gets converted to real addresses after assembling.


What type of programming language does assembly language use?

Assembly language uses a low-level programming language that directly corresponds to machine code instructions.