AT WHAT POINT WOULD YOU GET ANGRY ?

General discussion on mikroBasic PRO for 8051.
Post Reply
Author
Message
BarryP
Posts: 517
Joined: 02 Apr 2007 03:57
Location: New Zealand

AT WHAT POINT WOULD YOU GET ANGRY ?

#1 Post by BarryP » 28 Jan 2013 23:03

NO Support For This Product Since I purchased it 2 Years ago.
What are My Options ?
Is anybody that has any power in the company reading this 8051 forum ?

User avatar
janko.kaljevic
Posts: 3565
Joined: 16 Jun 2011 13:48

Re: AT WHAT POINT WOULD YOU GET ANGRY ?

#2 Post by janko.kaljevic » 29 Jan 2013 16:25

Hello,

For some time there were no releases of the 8051 compiler.
But we have in our plans major release during this year, and it will be big leap forward.

Also we have not stopped supporting it. We still provide technical support for compiler and hardware and we will continue with it.

Best regards.

BarryP
Posts: 517
Joined: 02 Apr 2007 03:57
Location: New Zealand

Re: AT WHAT POINT WOULD YOU GET ANGRY ?

#3 Post by BarryP » 30 Jan 2013 19:54

I need to create an mlk & mcl for an si1000.
can you provide a template (or actual) mbas module so I can make si1000.mcl
I am using C8051F931 at present as it appears have similar specs.

How do I allocate space in flash at a specific location.
I need to reserve a block soas I can write to flash from code.

The code below doesn't work.
If i comment org 0xF600 , the code compiles & space is allocated , but the block could be anywhere in flash ...

Code: Select all

program testAllocate

' Declarations section 
const Reserved512 as byte[512] = (
1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
2,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
3,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
4,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
5,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
6,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
7,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
8,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
9,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
10,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
11,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
12,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
13,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
14,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
15,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
16,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
17,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
18,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
19,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
20,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
21,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
22,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
23,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
24,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
25,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
26,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
27,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
28,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
29,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
30,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
31,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
32,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255
)   org 0xF600
dim x,y as word
main:
for x = 1 to sizeof(Reserved512)
   y = Reserved512[x-1]
next x
'   Main program 
end.

Post Reply

Return to “mikroBasic PRO for 8051 General”