Chapter 17 Appendix

 

Syntax

Function & Notes

 

 

 

#iflt

expression

Assembles block1 if the expression is negative.

 

block1

Assembles block2 if it is not negative (nothing will be

[#else

 

assembled if there is no #else).

block2]

 

#endif

 

 

 

 

 

 

#ifle

expression

Assembles block1 if the expression is zero or negative.

 

block1

Assembles block2 if it is positive. (nothing will be

[#else

 

assembled if there is no #else).

block2]

 

#endif

 

 

 

 

 

 

#ifgt

expression

Assembles block1 if the expression is positive.

 

block1

Assembles block2 if it is not positive (nothing will be

[#else

 

assembled if there is no #else).

block2]

 

#endif

 

 

 

 

 

 

#ifge

expression

Assembles block1 if the expression is zero or positive.

 

block1

Assembles block2 if it is negative. (nothing will be

[#else

 

assembled if there is no #else).

block2]

 

#endif

 

 

 

 

 

 

#ifb

dummy_ parameter

Assembles block1 if dummy_parameter is a null

 

block1

character. Assembles block2 if it is not equal (nothing

[#else

 

will be assembled if there is no #else). #ifb can only be

block2]

used within macro definitions.

 

#endif

 

 

 

 

 

 

#ifnb

dummy_ parameter

Assembles block1 if dummy_parameter is not a null

 

block1

character. Assembles block2 if it is equal (nothing will

[#else

 

be assembled if there is no #else). #ifnb can only be

block2]

used within macro definitions.

 

#endif

 

 

 

 

 

 

322 List of Assembler Control Statements

Page 334
Image 334
Panasonic MN1030 user manual Syntax Function & Notes