gpt4 book ai didi

assembly - 使用替代寄存器的 Z80 汇编

转载 作者:行者123 更新时间:2023-12-05 09:18:58 25 4
gpt4 key购买 nike

我尝试为 z80 程序集编写冒泡排序,我发现我需要使用替代寄存器。但推荐的语法 (B') 不起作用并引发错误。我如何使用这些寄存器?

最佳答案

没有直接使用影子寄存器的说明。
相反,有一个 instruction EXX将普通寄存器与影子寄存器交换。

把自己交给黑暗面
如果您计划在中断处理程序1 之外使用影子寄存器,您还必须 disable interrupts在使用影子寄存器期间。

例子:

di           ;disable interrupts
exx ;exchange registers BC,DE,HL with BC',DE',and HL'
ld b,8 ;do stuff with the shadow registers
....
exx ;put the normal registers in charge
ei ;re-enable interrupts

1)仅当您的系统在中断处理程序中使用影子寄存器时才适用。

警告
不要在禁用中断的情况下进行冗长的计算,否则您的系统将无法对中断处理程序处理的外部输入使用react。

AF还有一个影子寄存器:AF'。
您可以这样访问它:

ex af,af'    ;exchange af with its shadow register.

请注意,即使 ex 本身不影响标志,ex af,af' 也会将标志寄存器与其影子交换。

有关详细信息,请参阅:http://z80-heaven.wikidot.com/instructions-set

请注意 bubble sort作为一种算法很糟糕,它应该被禁止。
请实现insertion sort相反。

使用堆栈卢克
如果你确实进行了冗长的处理,那么你就不能使用影子寄存器并且必须使用堆栈而不是使用 pushpop .

ld b,8              ;normal processing
push bc ;save bc for later
ld b,9 ;extended processing
... do stuff with bc
pop bc ;throw away the extended bc and restore the old bc.

……不。还有一个。
如果堆栈没有为你削减它,你将不得不使用 ld 将值存储在内存中。 .

ld b,8               ;do stuff with bc
ld (1000),bc ;store bc for later
ld b,9 ;do other stuff
.....
ld (1002),bc ;store the extended bc
ld bc,(1000) ;restore the saved bc
.... ;continue processing.

直接寻址内存的好处是您不必丢弃值;缺点是运行起来比栈慢一点。

关于assembly - 使用替代寄存器的 Z80 汇编,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42607540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com