Rev 126 | Go to most recent revision | 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 00 00 align 46 0008 ALIGN 4 ; regular syntax - directivesyntax_iI.asm(7): error: Unrecognized instruction: Jp Label17 0008 Jp Label1syntax_iI.asm(7): error: Unrecognized instruction: jP Label17 0008 jP Label1 ; 2x error - instructionsyntax_iI.asm(8): error: Unrecognized instruction: Align 48 0008 Align 4syntax_iI.asm(8): error: Unrecognized instruction: aLiGN 48 0008 aLiGN 4 ; 2x error - directive9 000810 0008 OPT --syntax=i ; test the syntax options "i"11 0008 Label1:12 0008 C3 08 00 Jp Label112 000B C3 08 00 jP Label1 ; instructions should be case insensitive13 000E 00 00 Align 413 0010 aLiGN 4 ; directives too14 001015 0010 OPT reset ; reset syntax to defaultssyntax_iI.asm(16): error: Unrecognized instruction: Jp Label116 0010 Jp Label1 ; error - instruction17 0010# file closed: syntax_iI.asmValue Label------ - -----------------------------------------------------------0x0008 Label1