Motorola HC12 User Manual

Page 293

Advertising
background image

Assembler Messages

Message Codes

MCUez HC12 Assembler

User’s Manual

MOTOROLA

Assembler Messages

293

12.3.54 A12102: Page Value Expected

Type:

Error

Description:

A page number is missing in a CALL instruction.

Example:

DataSec: SECTION

data: DS.L 2

FarCodeSec: SECTION

FarFunction:

LDD #45

STD data

CodeSec: SECTION

CALL FarFunction

Tip:

Add the missing page operand to the CALL instruction.

Example:

DataSec: SECTION

data: DS.L 2

FarCodeSec: SECTION

FarFunction:

LDD #45

STD data

CodeSec: SECTION

CALL FarFunction, PAGE(FarFunction)

Advertising