im starting on assembly programing and trying a few exercices, im stuck on declaring an array of integers so i can later sum that array, im using 6502 emulator (6502 Macro Assembler, Simulator, and Debugger http://exifpro.com/utils.html) and getting the "Illegal byte code encountered" error. I have tryed several ways to create the array, the last of them was this:
*= $600
array:
.DB "1", 0
.DB "1",0
.DB "4",1
.DB "3",1
appreciate any help.