answersLogoWhite

0


Best Answer

The instruction set is usually called IA-64. This is not to be confused with EM64T, a 64-bit instruction set used in mainstream desktop processors. The answer your looking for is (EPIC)Explicitly Parallel Instruction Computing Chicagocubano strikes again

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: The Intel Itaniums use a new instruction set called?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the instruction sets that tell the computer what to do?

Instruction sets are just the opcodes in the CPU that tell it what to do and which software can use. There are hundreds to thousands of these instructions. These instructions vary per processor you use. Here are some of the common instruction sets:x86 - started with the Intel 8086 and mostly still available on PCsx64 - AMD's new instruction set to expand the x86 instruction set to use 64-bit instructions.IA-64 - The instruction set of Intel's Itanium processor, it is declining in popularity as Intel and the software manufacturers have shifted to the x64 instruction set.Z80 - This was an 8-bit instruction set used to run the CP/M operating system. The original TRS-80 used it.68000 - The Motorola 68000 was a 16-32 bit CPU.


What is the tagline of Intel?

The current "Intel Inside" slogan which was first launched in 1991, will be soon superseded by the new tagline "Intel. Leap ahead"


What came after dual core?

Quad core comes after dual core. Although Intel has a new range called i3, i5 and i7.


How do you add new machine language instruction to a processor intsruction set?

To add a new machine language instruction to an processor instruction set, you need to replace the microcode of the processor.


How can you get a new processer free?

Get a job at Intel or AMD.


What type of CPU does MAC os X use?

Older versions used a processor called PowerPC made by power.org New versions use Intel.


How do you upgrade from an Intel Pentium II to an Intel Pentium 4?

That would require purchasing a new motherboard, processor, and power supply.


How do you differentiate an Intel original mother board from a chipset?

in Intel mother board the mother board and all the chips also from Intel but in chipset motherboard the only chips are form Intel so this chipset is chepest in compair to orignal Intel mother board.so there is an opportunity that in chipset some chips are not from Intel so be carefull at the time of purchasing new computer from market.


How does the CPU keep track of which instruction to execute next?

The instruction register holds a pointer to the current instruction (in working memory) while the next instruction register points to the next instruction (the first instruction immediately after the current instruction's operands). If the current instruction is a jump instruction, it can change the next instruction register, allowing the program to branch to a new instruction once the jump instruction is processed. The next instruction pointer is automatically moved into the current instruction register once the current instruction has been processed. The entire process of executing an instruction is known as the fetch-decode-execute cycle.


Who does the voice in the new Intel commercial visabely smart?

Charlie Hunnan


How do I install replacement cartridges?

There's an instruction paper or a manual in every box when you purchase a new cartridge. It gives clear instruction on how to install your new cartridges.


Justify RST instruction can be called 1 byte Call instruction?

The RST instruction is a 1 byte opcode with a 3 bit imbedded operand. There are 8 different RST instructions. Each pushes the PC on the stack, and loads the PC with the operand's value times 8. (0H, 8H, 10H, 18H, etc.)Pushing the PC on the stack and loading a new value into the PC is exactly what a CALL instruction does, so the RST instruction is a 1 byte CALL instruction. The difference between RST and CALL is that CALL is a 3 byte instruction which can go anywhere in memory in one instruction.