One or more errors occurred in the back-end build...
Posted: 04 December 2008, 15:35 PM
When compiling with the following in a header:
the error
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:
The .map file shows RAMsize correctly declared as 65024; why the error, then? With the array length set to 1k, it shows an actual size of 43590 for main(); the reason for this is also unclear to me.
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
'-------------------------------------//