Code: Select all
'data storage arrays:
public const dataArrayLen as long = 10000
public threeDArray(dataArrayLen, 3) as single
is shown. When dataArrayLen is taken down to a much smaller value, the project successfully compiles."Error: one or more errors occurred in the back-end build process for "chirp.zxb" "
First issue: should the compiler return a more specific error?
Second issue: in the first module I have the following declared based on a previous post (http://www.zbasic.net/forum/about1063.html); I thought the RAM declaration was correct:
Code: Select all
'----------- Configurations ---------\\
Option TargetCPU zx1280n
Option ExtRamConfig On
Option RamSize 65536 - Register.RamStart
Option PortPinEncoding Off
Option TaskStackMargin 12
'-------------------------------------//