Thursday, July 22, 2010

OXIS International

OXIS International, Inc. is engaged in the research, development and sale of products that counteract the harmful effects of “oxidative stress.”
Oxidative stress refers to the situations in which the body’s antioxidant and other defensive abilities to combat free radicals (a.k.a highly reactive species of oxygen and nitrogen) are overwhelmed and one’s normal healthy balance is either lost or severely compromised.

Oxis products include therapeutic nutraceutical products, cosmeceutical products and proprietary formulations and clinical products that are developed internally and/or out-licensed to biotech and pharmaceutical companies as drug candidates.


They focus on naturally occurring protective substances since they are more likely to be both safe and efficacious. Their primary products incorporate and emphasize the multifaceted “super antioxidant” compound, L-­Ergothioneine (“ERGO”), as a key component. They own several patents and pending applications related to ERGO that cover current and planned products relevant to our nutraceutical and cosmecuetical businesses. Oxis patents and patent applications address ERGO’s protective effects and activities and the ERGO manufacturing process. The head quarters of the Oxis International is present in the United states of America. Ergothioneine, a super anti oxidant , therapeutic compounds are supplied and an overview of the products are given by Oxis international which is considered to be the one of the best corporation.

Friday, April 9, 2010

Intel Core i7 mobile processor extreme edition



This is the fastest laptop processor in the planet. It dominates and unleash world of extreme gaming and multimedia by upgrading to the ultimate intelligent performance of laptops powered by Intel Core i7 mobile processor Extreme Edition.

FOR THE WIN



Own your extreme gaming universe with the ultimate weapon for your arsenal: the Intel Core i7 mobile processor Extreme Edition. Unleashing the power of a desktop in a laptop designed from the ground up for gaming, the Intel Core i7 mobile processor Extreme Edition has intelligent technology built in, accelerating performance with overclocking enabled for even greater speed.Containing unimaginable muscle, the Intel Core i7 mobile processor Extreme Edition takes mobile gaming to new levels with up to 3.2 GHz and eight threads, so you can

take the virtual world into new realms of stunning reality.



BATTLE YOUR EVIL NEMESIS AND WIN

When the fate of humanity rests in your hands, you want no less than the elite. And with a laptop powered by Intel Core i7 mobile processor Extreme Edition you can immerse yourself in epic

tales with maximum PC power, enabled by a combination of Intel Turbo Boost Technology, accelerating processor clock speed up to 60% to match your workload, and Intel Hyper-Threading Technology.



MEETING THE ENEMY WITH MULTI-THREADED VENGEANCE



The latest multi-threaded games are optimized for Intel® architecture. And with the latest in artificial intelligence, particle systems, dynamic physics, and texture generation engines rendered across eight threads and up to 25 percent improvement over previous generations in highly threaded games, we’ll wonder how you ever played on anything else.



DOMINATE LONGER, UNPLUGGED



Unleash mobile gaming performance and stay unwired longer. Intel’s 45nm processors offer industry-leading battery life with mobile-friendly 55W thermal design power. And their advanced power management features mean that you can fine tune your rig for optimal battery life and gaming performance on the fly.



YOUR RIG, YOUR WAY



Laptops with Intel Core i7 mobile processor Extreme Edition supports Intel Extreme Memory Profiles (Intel XMP) and Intel Extreme Tuning Utility 1.3, the ultimate tuning utility making it possible to overclock and fine tune your mobile rig for incredible performance and battery life optimizations.Plus, with dual discrete graphics support, you’ll experience mind-blowing graphics on the go, so you can game in full living color and unprecedented realism.



Intel Core i7 Mobile Processor Extreme Edition

Specifications:

  • Intel Turbo Boost Technology
  • Intel Hyper-Threading Technology
  • Intel Virtualization Technology
  • Enhanced Intel Speed Step Technology
  • Execute disable bit.
  • Intel 64 architecture.



Wednesday, November 25, 2009

Intel Xeon Processor X5550


->It is a 5500 series processor
-> Clock Speed of 2.66GHz
->6.4 GT/s of QPI Speed
->8MB of Cache
->No of cores are 4
->No of QPI links are 2
-> It is based on 45nm lithography
-> Maximum TDP is 95W
-> Halogens free options available
->Instruction set of 64bit.
->No of transistors are 731 million
->Price is $958.00
-> Sockets supported is FCLGA1366
-> The compatible Chipset is Intel 5500 Chipset and Intel 5520 Chipset

Saturday, September 26, 2009

Data transfer Instructions(8085)

Data Transfer Instructions:

1) MOV r1,r2 (Move data;move the contents of one register to another ).
The contents of r2 register is moved to r1.This instruction doesn't affect any flags.
States: 4 Machine cycles :1.

2)MOV r,M (move the content of memory to register).
No Flags are affected after executing this instruction.Addressing modes is register indirect.
States: 7 Machine cycles :2.

3)MOV M,r (move the content of register to memory).
No Flags are affected after executing this instruction.Addressing modes is register indirect.
States: 7 Machine cycles :2.

4)MVI r,data(move immediate data to register).
No Flags are affected after executing this instruction.Addressing modes is immediate.
States: 7 Machine cycles :2.

5)MVI M,data(move immediate data to memory location).
No Flags are affected after executing this instruction.Addressing modes is immediate/register indirect.
States: 10 Machine cycles :3.

6)LXI rp,data16(Load register pair immediate).
This instruction loads immediate data of 16-bit into register pair rp.No Flags are affected after executing this instruction.Addressing modes is immediate.
States: 10 Machine cycles :3.

7)LDA addr(Load accumulator direct).
The content of the memory location specified in the instruction is stored into the accumulator.
No Flags are affected after executing this instruction.Addressing modes is direct.
States: 13 Machine cycles :4.

8)STA addr(Store accumulator direct).
The content of the memory location specified in the instruction is stored with the accumulator contents.No Flags are affected after executing this instruction.Addressing modes is direct.
States: 13 Machine cycles :4.


9)LHLD addr(Load H-L pair direct).
The content of memory location specified in the instruction is stored in the L register and the next memory location content is stored in the H register. No Flags are affected after executing this instruction.Addressing modes is direct.
States: 16 Machine cycles :5.

10)SHLD addr(Store H-L pair direct).
The content of memory location specified in the instruction is stored with the L register contents and the next memory location content is stored with the H register contents. No Flags are affected after executing this instruction.Addressing modes is direct.
States: 16 Machine cycles :5.

11)LDAX rp(LOAD accumulator direct).
The content of memory location,whose address is stored in the register pair is loaded into the accumulator.No Flags are affected after executing this instruction.Addressing modes is register indirect.
States: 7 Machine cycles :2.

12)STAX rp(LOAD accumulator direct).
The content of the accumulator is stored in the memory location,whose address is stored in the register pair.No Flags are affected after executing this instruction.Addressing modes is register indirect.
States: 7 Machine cycles :2.

13)XCHG(Exchange the contents of H-L with D-E pair).
The contents of H-L pair are exchanged with contents of D-E pair.No Flags are affected after executing this instruction.Addressing modes is register direct.
States: 4 Machine cycles :1.

These are the different data transfer instructions that are present in the 8085 microprocessor.

Instruction set of 8085-1(Intro)

An instruction is a command given to computer to perform the specified operation on given data.
The instruction set of a microprocessor is the collection of the instructions that the microprocessor is designed to execute.The instructions that are said in this set are based on the Intel 8085 processor.The programmer can write a assembly language program using the instruction set of a microprocessor.These instructions are classified into the following groups:

1) Data Transfer Instructions.
2) Arithmetic Instructions.
3)Logical Instructions
4)Branch Control Instructions
5)I/O and Machine Control Instructions.

Data Transfer Instructions:
->Instructions which ate used to transfer data from one register to another register from memory to register or register to memory will come under this group.The different data transfer instructions are MVI,LXI,LDA,STA etc. For more detail Click here.

Arithmetic Instructions:

->The instructions of this group perform operations like addition,subraction,increment or decrement of the content of the register or the memory location.Examples :ADD,SUB,INR,DAD.

Logical Instructions:
->The instructions of these group perform logical operations like AND,OR,compare,rotate etc.
Examples are ANA,XRA,ORA,CMP,RAL etc.

Branch Control Instructions:
->This group includes the instructions for conditional and unconditional jump,subroutine call,return and restart.Examples are: JMP,JC,JZ,CALL,CZ,RST etc.

I/O and Machine Control Instructions:
->This group includes the instructions for input/output ports,stack and machine control.
Examples are: IN,OUT,PUSH,POP,HLT etc.

Intel Xeon Processor X5560

->It is a 5500 series processor
-> Clock Speed of 2.80GHz
->6.4 GT/s of QPI Speed
->8MB of Cache
->No of cores are 4
->No of QPI links are 2
-> It is based on 45nm lithography
-> Maximum TDP is 95W
-> Halogens free options available
->Instruction set of 64bit.
->No of transistors are 731 million
->Price is $1172.00
-> Sockets supported is FCLGA1366
-> The compatible chipset is Intel 5500 Chipset and Intel 5520 Chipset

Intel Xeon Processor X5570

->It is a 5500 series processor
-> Clock Speed of 2.93GHz
->6.4 GT/s of QPI Speed
->8MB of Cache
->No of QPI links are 2
-> It is based on 45nm lithography
-> Maximum TDP is 95W
-> Sockets supported is FCLGA1366
-> Halogens free options available
->Price is $1386.00
->No of transistors are 731 million
-> The compatible chipset is Intel 5500 Chipset and Intel 5520 Chipset