answersLogoWhite

0


Best Answer

Yes, the "Current PSW" contains machine state and next instruction address. It is a 64 bit register, and bits 33-63 (AMODE=31) or bits 40-63 (AMODE=24) contain the address of the next instruction to be executed. Certain "restartable" instructions, while in flight, will maintain the current instruction address until the sequence is complete, and certain exceptions, "early exceptions", will contain the current instruction address but, in general, the PSW (33-63) contains the address of the next instruction to execute.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: On traditional IBM mainframe what PSW is a special register that holds the address of the nest instruction to be executed?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between instruction registers and instruction pointer?

instruction register is used to store the next instruction to be executed. instruction pointer is used to store the address of the next instruction to be executed.


What is the function of the program counter register?

The function of the program counter register is to hold the address of the instruction that is being executed and (later) to hold the address of the instruction that will be executed next.


What is the function of instruction register?

The Instruction Register (IR) stores the instruction currently being executed. In simple processors each instruction to be executed is loaded into the instruction register which holds it while it is decoded, prepared and ultimately executed.


What register points to the next instruction?

actually register holds the data..there are 6 register which are temporary registers..program counter holds the address of next instruction to be fetched..instruction register holds the currently executed data...


What is the function of the PC register in the 8086 CPU?

There is no PC register in the 8086/8088. It is called the IP register by Intel and it stands for the Instruction Pointer. It contains the address of the current/next instruction to be executed.


What is the consists in the Instruction register?

The Instruction Register contains the current instruction being executed. It is an internal, special register, and you can not do anything explicit with it. If you are referring to the Program Counter, that simply contains the address of the next instruction to execute. It is incremented for each opcode and operand byte fetched.


What happens when branch instruction comes in 8086?

When a branch (or "jump") instruction is executed, the condition codes bits (in the flag register) determine whether or not the Program Counter (PC register) is changed to the Effective Address specified by the instruction; if not, then the PC is unchanged.


What is the function of program counter?

program counter is a register that has the address of next instruction that has to be executed after currently executing instruction. it is used for proper execution of functions of computer by providing address of next instruction to microprocessor.


Which register modifies ret instruction?

instruction register


Fad and fad and fadp are all what?

These are different types of memory registers in a computer's central processing unit (CPU). The FAD register is used for storing the address of a memory location, the FADP register is used for storing the address of an instruction, and the FADP register is used for storing the address of the next instruction to be executed.


What happens when POP H instruction is executed in 8085?

The POP H instruction in the 8085 copies the top of stack to the HL register and then increments the stack pointer by 2. In C pseudo code, the sequence is L = *(SP++); H = *(SP++);


How does the Fetch Decode Execute work?

The program counter in the processor holds the address of the next instruction needed from main memory. The program counter copies its contents into the memory address register. The memory address register then sends the address along the address bus to main memory and the contents of the memory location specified by the address are sent along the data bus to the memory buffer register. The contents of the memory buffer register are then copied to the current instruction register where they are decoded and executed.