answersLogoWhite

0

That could be trampoline, or skydiving...

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Is jne An instruction for the assembly language?

Yes. JNE is the Jump Not Equal instruction and all assembly languages support it.


Is there a compare jump equal instruction for the 8051?

The 8051 microcontroller does not have a specific "compare jump equal" instruction. Instead, conditional jumps can be achieved using a combination of the CJNE (Compare and Jump if Not Equal) instruction, which checks two registers and jumps if they are not equal, or by using the JZ (Jump if Zero) instruction after a subtraction operation. By setting up the comparison manually and then checking the result, you can effectively implement a compare-and-jump-equal functionality.


How many bus cycles are required for an unconditional or a conditional jump instruction in 8086 microprocessor to be executed?

when conditional jump instruction is executed it has 10 m/c cycles bt when nt executed it has 7 m/c cycles....while unconditional jump instruction has 10 m/c cycles...


How many bytes are there for jump instruction in 8085?

There are 74 instructions in the 8085 microprocessor.


What jmp instruction assembles if distance is 0020h bytes?

If the distance for a JMP instruction is 0020h bytes, it typically assembles to a short jump instruction (if the target is within a certain range) or a near jump instruction. In this case, a near jump would be used, which consists of the opcode followed by a 16-bit offset. The exact opcode will depend on the assembly language and architecture, but for x86, a near JMP could be represented as EB for a short jump or E9 followed by the relative address for a long jump.


On Lion King the game how do you jump?

Read the Instruction Booklet.


In super Mario galaxy how do you kick jump?

as far as i know, it is not possible to kick jump. check the instruction manual, it has all of mario's moves in there. as far as i know, it is not possible to kick jump. check the instruction manual, it has all of mario's moves in there.


What is jump on carry in 8085?

Jump on Carry is simply a "JUMP" instruction which will transfer the control to some specific location if carry flag is set. For Example: JC 2004H This instruction will take the control to address location 2004H if carry flag is set.


Why is the jump instruction jmp of 8085 microprocessor given the immediate addressing mode?

because the operand is available in the instruction itself


Is the following a valid instruction cjne a p2 over?

The instruction "cjne a, p2 over" is not a valid instruction in standard assembly language syntax. Typically, "cjne" is an abbreviation for "compare and jump if not equal," and it usually requires two operands for comparison and a label for the jump. The correct syntax would involve specifying two registers or immediate values to compare, followed by a label to jump to if the condition is met. Therefore, this instruction is incorrectly formatted.


What will be the content of program counter of 8085 mpu has fetched machine code located at the memory location 205FH?

It depends on whether the machine code is one, two, or three bytes long, and on whether or not the instruction transferred control to another location. In the case of a non-jump single byte instruction, the PC will have a value of 2060H after the instruction is complete, and it will be 2061H or 2062H after a two or three byte instruction. In the case of a jump, call, or interrupt, the PC will depend on the instruction.


Difference between JUMP and CALL instructions?

the difference is that jump changes the eip pointer register to another memory location and continues the execution from the point it jumped. the call is like a function call in languages like C because it saves the memory location of the next instruction to the stack, so then with a ret instruction you can pop out from the stack that saved memory location to jump back again exactly after the call event.