Next: Z80 Syntax, Up: Z80-Dependent [Contents][Index]
-z80Produce code for the Z80 processor. By default accepted undocumented
operations with halves of index registers (IXL, IXH, IYL, IYH) and
instuction IN F,(C). Other useful undocumented instructions produces
warnings. Undocumented instructions may not work on some CPUs, use
them on your own risk.
-r800Produce code for the R800 processor.
-z180Produce code for the Z180 processor.
-ez80Produce code for the eZ80 processor in Z80 memory mode by default.
-ez80-adlProduce code for the eZ80 processor in ADL memory mode by default.
-local-prefix=prefixMark all labels with specified prefix as local. But such label can be
marked global explicitly in the code. This option do not change default
local label prefix .L, it is just adds new one.
-colonlessAccept colonless labels. All names at line begin are treated as labels.
-sdccAccept assembler code produced by SDCC.
-fp-s=FORMATSingle precision floating point numbers format. Default: ieee754 (32 bit).
-fp-d=FORMATDouble precision floating point numbers format. Default: ieee754 (64 bit).
-strictAccept documented instructions only.
-fullAccept all known Z80 instructions.
-with-inst=INST[,...]-Wnins INST[,...]Enable specified undocumented instruction(s).
-without-inst=INST[,...]-Fins INST[,...]Disable specified undocumented instruction(s).
-ignore-undocumented-instructions-WnudSilently assemble undocumented Z80-instructions that have been adopted as documented R800-instructions .
-ignore-unportable-instructions-WnupSilently assemble all undocumented Z80-instructions.
-warn-undocumented-instructions-WudIssue warnings for undocumented Z80-instructions that work on R800, do not assemble other undocumented instructions without warning.
-warn-unportable-instructions-WupIssue warnings for other undocumented Z80-instructions, do not treat any undocumented instructions as errors.
-forbid-undocumented-instructions-FudTreat all undocumented z80-instructions as errors.
-forbid-unportable-instructions-FupTreat undocumented z80-instructions that do not work on R800 as errors.
Floating point numbers formats.
ieee754Single or double precision IEEE754 compatible format.
halfHalf precision IEEE754 compatible format (16 bits).
singleSingle precision IEEE754 compatible format (32 bits).
doubleDouble precision IEEE754 compatible format (64 bits).
zeda3232 bit floating point format from z80float library by Zeda.
math4848 bit floating point format from Math48 package by Anders Hejlsberg.
Known undocumented instructions.
idx-reg-halvesAll operations with halves of index registers (IXL, IXH, IYL, IYH).
sliSLI or SLL instruction. Same as SLA r; INC r.
op-ii-ldIstructions like <op> (<ii>+<d>),<r>. For example: RL (IX+5),C
in-f-cInstruction IN F,(C).
out-c-0Instruction OUT (C),0
Next: Z80 Syntax, Up: Z80-Dependent [Contents][Index]