Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

What is difference between implied and immediate addressing modes ? Explain with an example.

AspectImmediate Addressing ModeImplied Addressing Mode
DefinitionOperand value is directly specified within the instruction.Operand or operation is implied by the instruction itself.
OperandOperand is a constant or an immediate value.No explicit operand is required; the instruction itself dictates the operation.
ExampleLDA #10 loads the accumulator with the immediate value 10.CLC clears the carry flag.
UsageSuitable for instructions where the operand is known beforehand or is a constant value.Typically used for instructions that perform operations without needing additional data or operands.
Operand StorageOperand value is included within the instruction.No additional operand storage is needed; instruction itself defines the operation.
Memory AccessOperand value doesn’t require fetching from memory.No memory access needed for operand retrieval.

Leave a Comment