Rev 129 | Blame | Compare with Previous | Last modification | View Log | Download
# file opened: syntax_iI.asm1 0000 ; SYNTAX option "i":2 0000 ; i Case insensitive instructions/directives (default = same case required)3 00004 0000 ; verify regular syntax works as expected with default options5 0000 C3 08 00 jp Label15 0003 C3 08 00 JP Label1 ; regular syntax - instruction6 0006 EB ex de,hl ; regular syntax - registers7 0007 00 align 47 0008 ALIGN 4 ; regular syntax - directivesyntax_iI.asm(8): error: Unrecognized instruction: Jp Label18 0008 Jp Label1syntax_iI.asm(8): error: Unrecognized instruction: jP Label18 0008 jP Label1 ; 2x error - instructionsyntax_iI.asm(9): error: Illegal instruction: ex De,Hl ; illegal instruction due to registers9 0008 ex De,Hl ; illegal instruction due to registerssyntax_iI.asm(10): error: Unrecognized instruction: Align 410 0008 Align 4syntax_iI.asm(10): error: Unrecognized instruction: aLiGN 410 0008 aLiGN 4 ; 2x error - directive11 000812 0008 OPT --syntax=i ; test the syntax options "i"13 0008 Label1:14 0008 C3 08 00 Jp Label114 000B C3 08 00 jP Label1 ; instructions should be case insensitive15 000E 00 00 Align 415 0010 aLiGN 4 ; directives too16 0010 EB ex De,Hl ; registers should be also case insensitive17 0011 DD 45 DD 4C ld b,IXl,c,IXh ; BTW this is actual way how Zilog describes half-ix regs18 001519 0015 OPT reset ; reset syntax to defaultssyntax_iI.asm(20): error: Unrecognized instruction: Jp Label120 0015 Jp Label1 ; error - instructionsyntax_iI.asm(21): error: Label not found: IXl21 0015 06 00 0E 00 ld b,IXl,c,IXh ; error - register (label not found)22 0019# file closed: syntax_iI.asmValue Label------ - -----------------------------------------------------------0x0008 Label1