1. Consider the program segment written for 8085 based system: LXI S, FFFFH MVI A, 00H MVI B, 0FH SUB B CNC GOLOC MVI A, FFH where in the program subroutine labelled ''GOLOC'' introduces delay of 28 T-states only. How many T-states are required to execute above program statement?





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 02 Jun 2017 12.55 am
    Since carry (CY) flag will not be set at the execution of "SUB B" instruction; check for CY flag fails but this requires 9(= 6 OP - CODE FETCH + 3T - states) T-states ∴ Total T-states = 10 + 7 + 7 + 4 + 9 + 7 = 44.
Show Similar Question And Answers
QA->A statement followed by two assumptions I and II is given. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You are to decide which of the given assumptions can definitely be drawn from the given statement. Indicate which one of the four given alternatives is correct ? Statement : If more encouragement is given to Sports, Indians will win more gold medals at the Olympic Games. Assumptions : I. Indians do not win gold medals. II. More enc....
QA->“The Indian Rebellion of 1857 was not one movement …. it was many” – The above statement has been made by?....
QA->Two statements are given followed by two conclusions I and II. You have to consider the two statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the given conclusions is definitely drawn from the given statements. Statement : All virtuous persons are happy. No unhappy person is virtuous. Conclusions : I. Happiness is related to virtue II. Unhappy person is not virtuous.....
QA->Which winds are flowing from sub tropical high pressure to sub polar low pressure?....
QA->How many States are required to ratify certain Amendments to the Constitution?....
MCQ->Consider the program segment written for 8085 based system: LXI S, FFFFH MVI A, 00H MVI B, 0FH SUB B CNC GOLOC MVI A, FFH where in the program subroutine labelled ''GOLOC'' introduces delay of 28 T-states only. How many T-states are required to execute above program statement?....
MCQ->Consider the following program segment written for 8085 based system LXI SP, FFFFH
MVI A, FFH
MOV BB, A
K: DCR B
PUSH HL
JNZ K
INR A
LXI H, FFCEH
CPI 20H
LHLD The contents of accumulator is :....
MCQ->Which of the following statements are correct about subroutines used in C#.NET? If we do not return a value from a subroutine then a value -1 gets returned. Subroutine definitions cannot be nested. Subroutine can be called recursively. To return the control from middle of a subroutine exit subroutine should be used. Subroutine calls can be nested.....
MCQ->In 8085 microprocessor system, what will be the total delay provided by the following loop.
MVI A, 11H
LXI B, 12FFH
Delay: DCX B
XTHL
NOP
XRA B
JNZ Delay where system clock is operating at 3 MHz.....
MCQ->What will be the output of the program? class Super { public int i = 0; public Super(String text) / Line 4 / { i = 1; } } class Sub extends Super { public Sub(String text) { i = 2; } public static void main(String args[]) { Sub sub = new Sub("Hello"); System.out.println(sub.i); } }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution