Changes

Z80 Assembler Reference Manual

70 bytes added, 10:32, 31 July 2017
no edit summary
string. For example:
IRP string,<'hello world',13,10>,'arg2' LOCAL str psect data
str: db string,'$'
psect text ld c,9 ld de,str call 5 ENDM
would expand to
psect data
??0001: db 'hello world',13,10,'$'
psect text ld c,9 ld de,??0001 call 5 psect data
??0002: db 'arg2','$'
psect text ld c,9 ld de,??0002 call 5
{|
|+!Code|| !! Equivalent|| !! Meaning |
|-
|alt || m || Arithmetic less than |
|-
|llt || c || Logical less than |
|-
|age || p || Arithmetic greater or equal|
|-
|lge || nc || Logical greater or equal |
|-
|di || || Use after ld a,i for test-|
|-
|ei || || ing state of interrupt|
|-
| || || enable flag - enabled or|
|-
| || || disabled respectively.
|}