标志寄存器
Problem statement:
问题陈述:
Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B.
在8085微处理器中编写汇编语言程序以访问标志寄存器,并与寄存器B交换标志寄存器F的内容。
Assumptions: Initial values of flag register, register B and stack pointer are 00, 3F, and 3FFF respectively.
假设:标志寄存器,寄存器B和堆栈指针的初始值分别为00、3F和3FFF。
PSW stands for PROGRAM STATUS WORD. PSW combines accumulator A and flag register F.
PSW代表程序状态字。 PSW将累加器A和标志寄存器F组合在一起。
Algorithm:
算法:
Push the value of PSW in memory stack by help of PUSH instruction
通过PUSH指令将PSW的值压入存储器堆栈
Pop the value of Flag register and store it in register H by help of POP instruction
弹出标志寄存器的值,并借助POP指令将其存储在寄存器H中
Move the value of register H in register C
将寄存器H的值移到寄存器C中
Move the value of register B in register H
将寄存器B的值移到寄存器H中
Move the value of register C in register B
将寄存器C的值移到寄存器B中
Push the value of register H in memory stack by help of PUSH instruction
通过PUSH指令将寄存器H的值压入存储器堆栈
Pop the value of PSW from memory stack using POP instruction
使用POP指令从存储器堆栈中弹出PSW的值
Program:
程序:
ADDRESS | MNEMONICS | COMMENTS |
2000 | PUSH PSW | Push value of accumulator and flag in stack |
2001 | POP H | Pop value from TOP of memory stack in H |
2002 | MOV C, H | C ← H |
2003 | MOV H, B | H ← B |
2004 | MOV B, C | B ← C |
2005 | PUSH H | Push the value of register H |
2006 | POP PSW | Pop value of flag register and Accumulator |
2007 | HLT | END |
地址 | 记忆 | 注释 |
2000 | 推PSW | 将累加器的值和标志压入堆栈 |
2001 | POP H | 从H中的内存堆栈的TOP弹出值 |
2002年 | MOV C,H | C←H |
2003年 | MOV H,B | H←B |
2004年 | MOV B,C | B←C |
2005年 | 推H | 推送寄存器H的值 |
2006年 | POP PSW | 标志寄存器和累加器的弹出值 |
2007年 | HLT | 结束 |
Explanation – Registers used A, B, C, H, F
说明–使用的寄存器A,B,C,H,F
PUSH PSW instruction performs the following task:
PUSH PSW指令执行以下任务:
- SP ← SP - 1
- M[SP] ← A
- SP ← SP - 1
- M[SP] ← F
POP H instruction performs the following task:
POP H指令执行以下任务:
- H ← M[SP]
- SP ← SP + 1
MOV C, H – moves the value of H in register C
MOV C,H –将H的值移动到寄存器C中
MOV H, B – moves the value of B in register H, hence H is updated
MOV H,B –移动寄存器H中B的值,因此H被更新
MOV B, C – moves the value of C in register B, hence B is updated
MOV B,C –移动寄存器B中C的值,因此B被更新
PUSH H performs the following task:
PUSH H执行以下任务:
- SP ← SP - 1
- M[SP] ← H
POP PSW performs the following task:
POP PSW执行以下任务:
- F ← M[SP]
- SP ← SP + 1
- A ← M[SP]
- SP ← SP + 1
HLT – stops executing the program and halts any further execution
HLT –停止执行程序,并停止任何进一步的执行
翻译自: https://www.includehelp.com/embedded-system/access-flag-register-and-exchange-the-content-of-flag-register-f-with-register-b-using-8085-microprocessor.aspx
标志寄存器