High-Address into the accumulator in asm using only LDA

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

High-Address into the accumulator in asm using only LDA

跳至解决方案
663 次查看
Brax02
Contributor III

Hello,

 

I have declare a table like that.

 

ABC:                DC.W  $1234          

 

The address of ABC is in my example 0xF200

 

I want to load in the accumulator 0xF2 only using a LDA command.

 

LDA  #ABC==> A=0x0, 0x0 is the LSB of the address and not the MSB of the address 0xF2

 

How can i do that ?

 

for sure I can do something like but it's not the goal.

 

          LDHX #ABC  ; HX = F200

          PSHH         

          PULA          ;A=0xF2

标签 (1)
1 解答
516 次查看
implicit
Contributor II

I believe you want to use the HIGH operator in this case, at least for CodeWarrior's built-in HCS08 assembler.

E.g.

LDA #HIGH(ABC)

在原帖中查看解决方案

3 回复数
517 次查看
implicit
Contributor II

I believe you want to use the HIGH operator in this case, at least for CodeWarrior's built-in HCS08 assembler.

E.g.

LDA #HIGH(ABC)

516 次查看
Brax02
Contributor III

I was exactly looking for that ! Thanks a lot !!

0 项奖励
516 次查看
bigmac
Specialist III

Hello,

The following alternatives should also work -

   lda #(ABC/256)

   lda #(ABC>>8)

The calculation is done during assembly.

Regards,

Mac

0 项奖励