How Can I Determine the Effective Address in Assembly Language?

  • Thread starter Thread starter Ald
  • Start date Start date
  • Tags Tags
    Assembly
Click For Summary
The discussion revolves around understanding how to determine the effective address and the contents of registers or memory locations after executing specific instructions on the MC68HC12 processor. The initial state of the CPU registers is provided, along with a memory dump. The concept of effective address is clarified as the actual address used for an instruction's operand, with examples illustrating how different addressing modes, such as indexed and immediate addressing, work. Participants emphasize the importance of understanding the specific commands and parameters executed by the CPU, suggesting that users familiarize themselves with the processor's architecture and instruction set. The conversation highlights the need for a systematic approach to evaluate each instruction step-by-step, focusing on how the CPU processes these commands to determine the effective address and update registers accordingly.
Ald
Messages
24
Reaction score
1
I am suppose to determine the effective address if the instruction below and the contents of any affected register (except the PC) or memory location after each of the instructions in problem is executed. Assume the initial state (in hex) of the CPU and memory before every instruction is as follows: Processor is MC68hc12.
ACCA = 00 ACCB = 05 IX = 0111 IY = 0100

0100 FF E7 00 20 58 66 00 80 FF BC 10 00 9D 33 EF 76
0110 41 CC 71 55 00 00 D3 17 11 22 A1 01 13 66 85 EE

I don't even know how to start the problem. From what I could find the effective address is the address of the data referred to in the instruction. My textbook didn't even define effective address. Could someone provide a little explanation on this or point me to some simple explanation of the concept.

Thanks
 
Last edited:
Technology news on Phys.org
Each CPU type will have a slightly different machine language so you should first try to determine what commands the two instruction lines are executing. Typically CPUs take in instructions which contain the command type and command parameters, e.g. <command type> <parameter 1> <parameter 2>. Also, find out what the segment registers are, etc.

You need to do some reading on the processor.
 
The latextlab site seems to be down any other suggestions for information. This is an assignment from the 1st chapter of a MC68hc12 book. It doesn't explain effective addressing, just uses the term. I'm totally lost.
Thanks for your help.
 
Effective address just means the actual address used for an instruction's operand, or when the address itself is the operand, as in the case of the Load Effective Address (LEA) instruction on Intel cpu's.
 
Thanks, so in the instructions below the effective address is in the operand, correct? How do I determine the address and affect registers?

I am suppose to determine the effective address and the contents of any affected register (except the PC) or memory location after each of these instructions are executed.

a. LDX [10,X]
b. LDY $100
c. LDY #100
d. LDY 0,Y
e. STAB -5,X
f. LDAB B,X
g. LDAB [D,Y]
h. STAA 1,-X
i. LDY 2,X+

Assume the initial state (in hex) of the CPU and memory before every instruction is as follows: Processor is MC68hc12.
ACCA = 00 ACCB = 05 IX = 0111 IY = 0100

0100 FF E7 00 20 58 66 00 80 FF BC 10 00 9D 33 EF 76
0110 41 CC 71 55 00 00 D3 17 11 22 A1 01 13 66 85 EE
 
Last edited:
Ald said:
Thanks, so in the instructions below the effective address is in the operand, correct?
The effective address is the address of the operand. Assuming # means immediate, then it's a special case.

How do I determine the address and affect registers?
Go through the process that the cpu would go through.
 
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K