Rev 129 | Blame | Compare with Previous | Last modification | View Log | Download
# file opened: define.asm1 0000 device zxspectrum1282 00003 0000 org #80004 80005 8000 DEFINE Scalar db 1define.asm(6): error: [DEFARRAY] missing space between <id> and first <item>: ,db 2,db 3,db 46 8000 DEFARRAY Array,db 2,db 3,db 47 80008 8000 01 db 1define.asm(9): error: Unrecognized instruction: Array[3]9 8001 Array[3]define.asm(10): error: Unrecognized instruction: Array[2]10 8001 Array[2]define.asm(11): error: Unrecognized instruction: Array[1]11 8001 Array[1]define.asm(12): error: Unrecognized instruction: Array[0]12 8001 Array[0]define.asm(13): error: Unrecognized instruction: Array13 8001 Array14 800115 8001 ; original test has invalid syntax of DEFARRAY (by Docs definition), when "fixed":16 8001 DEFARRAY Array2 db 2,db 3,db 4define.asm(17): error: [ARRAY] index not in 0..<Size-1> range: Array2[3]17 8001 ~ Array2[3]18 8001 04 db 419 8002 03 db 320 8003 02 db 2define.asm(21): error: [ARRAY] Expression error: Array221 8004 Array222 8004# file closed: define.asmValue Label------ - -----------------------------------------------------------