Difference between 8080 and 8085?
Can you register in dailymotion?
Of course.. Registration is sometimes required. Go to the link below to register
How research improve instruction?
research improves instructions,by making the instructions simpler and easy to understand.
The stack will store the return address and the accumulator and flags.
How do you generate clock pulse train?
A clock pulse train can be generated using various methods, such as oscillators, timers, or flip-flops. A common approach is to use a 555 timer IC configured in astable mode, which produces a continuous square wave output. Alternatively, digital circuits can utilize a frequency divider, such as a flip-flop, to divide a higher frequency signal into a desired clock pulse train. The output frequency can be adjusted by changing resistor and capacitor values in the timer circuit or by selecting appropriate division ratios in flip-flop configurations.
What are bit fields What is the use of bit fields in a Structure declaration?
Both C and C++ allow integer members to be stored into memory spaces smaller than the compiler would ordinarily allow. These space-saving structure members are called bit fields, and their width in bits can be explicitly declared. Gagandeep Singh Bitfields can only be declared inside a structure or a union, and allow you to specify some very small objects of a given number of bits in length. struct { /* field 4 bits wide */ unsigned field1 :4; /* * unnamed 3 bit field * unnamed fields allow for padding */ unsigned :3; /* * one-bit field * can only be 0 or -1 in two's complement! */ signed field2 :1; /* align next field on a storage unit */ unsigned :0; unsigned field3 :6; }full_of_fields; The main use of bitfields is either to allow tight packing of data or to be able to specify the fields within some externally produced data files.
What are the different types of register?
There are two type of register in computer cpu. first one is data register and second one is address register.
A buffer register is the simplest kind of register; all it does is store a digital information temporarily. It holds the contents of the memory which are to be transferred from memory to other components. By acting as a buffer, it allows the central processor and memory units to operate independently without being affected by minor differences in operation.
See the related link for more information.
What is addressing mode of instruction?
Addersing mode of a microprocesso tells the programmer that in which mode the instruction works . There are 5 addressing mode in 8080 , viz. Direct , register, indirect , immidiate ,implict addressing modes.
What do you understand by programming model of a microprocessor?
Micro-Processor programming model refers to the Micro-Processor system as
seen by a programmer. It involves the following:
The Instruction Set -
The Micro-Processor internal Registers -
The way Micro-Processor accesses the memory (Addressing -
Mode):
Micro-Processor 'Fetches' (reads) an instruction from memory,
'Decodes' (interprets) the instruction, and then
'Executes' (carries out the task) the instruction.
It repeats the cycle for next instruction.
By
Fijabi Isaac M. Tech Computer Sc.
What is the bit capacity of a memory that has 1024 addresses and can store 8 bits at each address?
1024 bytes is 8192 bits.
What is instruction prefetching?
Instruction pre-fetching is very important phenomena in 8086 microprocessor. There is a 16-bit register set located in the BIU (bus Interface Unit) known as QUEUE.
While EU (Execution Unit) is working on the instructions i.e decoding and executing them, queue fetches the next sixinstruction byte of the running program. It is to be noted that, unlike stack (which is last in first out), queue is first in first out. Instruction which is fetched first is retrieved first.
This is much faster than sending out the address and waiting for memory to send back the instruction byte or bytes.
Limitation of QUEUE:
This pre-fetching of instruction speeds up processing but sometimes during 1JMP and CALL statements, queue has to be dumped and reloaded again starting from the next address.
Fetching the instruction while the current instruction executes is called pipelining.
1. Like in c++ programming, when a function is called the control is transferred to the function and its instruction
i just know 2 of them..
1. XRA A
2. SUB A