answersLogoWhite

0

What else can I help you with?

Related Questions

What is the assembly language program for GCD of two 16 bit unsigned integers using Intel 8086?

alp for lcm of a no


What assembly language is the best for making an OS?

The native Assembly language of the given platform. For example it would be stupid to write anything in Motorola 68000 Assembly for Intel x86 platform: it wouldn't work.


What has the author Ross P Nelson written?

Ross P. Nelson has written: 'Microsoft's 80386/80486 programming guide' -- subject(s): Assembler language (Computer program language), Intel 80386 (Microprocessor), Intel 80486 (Microprocessor), Programming


What has the author James F Scanlan written?

James F. Scanlan is a professor of English and Comparative Literature, known for his research on Henry James and his works. Scanlan has written numerous scholarly articles and books focusing on James' literary influence and impact. Some of his notable works include "Narrative Perspective in the Posthumous Fiction of Henry James" and "Henry James: The Contemporary Reviews."


What is set a detailed instructions given to a computer?

Assembly language-or are you looking for the different instructions within assembly language if so search Intel 8086 datasheet in yahoo and download the datasheet for the Intel 8086 processor(x86) and the last three pages or so tell you the instructions.


What is the first x86 Microprocessor?

"The x86 architecture first appeared as the Intel 8086 CPU released in 1978, a fully 16-bit design based on the earlier Intel 8085. Although not binary compatible, it was designed to allow assembly language programs written for the 8085 to be mechanically translated into the equivalent 8086 assembly. " Here's the entire Article: http://en.wikipedia.org/wiki/X86


Write division of two 8 bit number using assembly language of Intel 8086?

Mov ax,[2020h] mov bx,[2022h] mul bl mov [2024h],ax hlt


Why assembly level language is called machine dependent language?

Machine languages are composed of instructions intended to be read directly by the microprocessor (the computer's CPU). The manufacturer of the CPU determines it's "INSTRUCTION SET" ASSEMBLY LANGUAGE on the other hand IS NOT machine dependent. The same commands ADD, Divide, Move, etc are universal. HOWEVER the ASSEMBLY LANGUAGE has to have an INTERPRETER for EACH CPU, and that will translate the Universal ASSEMBLY language to the MACHINE SPECIFIC code required to program the CPU.


What are the types of processors used in assembly language?

Each processor has its own assembly language (well, some of them has more than one).Example for i386:Intel-style:MOV EDX,[EBP-16]MOV EAX,[EBP-20]MOV [EDX],EAXAT&T style:mov -16(%ebp),%edxmov -20(%ebp),%eaxmov %eax,(%edx


What is the effect of computer architecture in the field of operating system?

The architecture will provide different sets of operators and memory and quite possibly how they were used (in assembly language for instance). Compare risc and Intel architecture for extreme proof.


Is there a website to find the complete Intel's processor numbers list?

Yes, Answers.com has a page with a lot of info on Intel processors. http://www.answers.com/topic/list-of-intel-microprocessors


Why can not we execute a machine language program written for a computer made by Intel on a computer made by Apple?

Intel does not make computers, Intel makes computer chips and processors. Some computers made by Apple use an Intel processor, some use an IBM processor, and some older ones used a Motorola processor. Even earlier ones used a TI processor. That said, frequently machine language programs must be modified for a different computer. You would need to get the source code and run it through a compiler for your Apple. You might even need to modify the source code for a different computer made by the same company. If the machine language program makes calls to the memory instead to the operating system, it would need to be modified for every computer that uses it.