<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.mcselec.com/bavr/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.mcselec.com/bavr/index.php?action=history&amp;feed=atom&amp;title=%24BOOTVECTOR</id>
		<title>$BOOTVECTOR - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.mcselec.com/bavr/index.php?action=history&amp;feed=atom&amp;title=%24BOOTVECTOR"/>
		<link rel="alternate" type="text/html" href="http://wiki.mcselec.com/bavr/index.php?title=$BOOTVECTOR&amp;action=history"/>
		<updated>2026-06-10T13:01:50Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.18.6</generator>

	<entry>
		<id>http://wiki.mcselec.com/bavr/index.php?title=$BOOTVECTOR&amp;diff=4578&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;= &lt;span class=&quot;f_Header&quot;&gt;Action&lt;/span&gt; =  This compiler directive will force the compiler to create an interrupt vector table(IVR).  &lt;span style=&quot;font-family: Arial;&quot;&gt;&amp;nbsp;&lt;/...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.mcselec.com/bavr/index.php?title=$BOOTVECTOR&amp;diff=4578&amp;oldid=prev"/>
				<updated>2013-08-24T08:21:33Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;Action&amp;lt;/span&amp;gt; =  This compiler directive will force the compiler to create an interrupt vector table(IVR).  &amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt; &amp;lt;/...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;Action&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
This compiler directive will force the compiler to create an interrupt vector table(IVR).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;Syntax&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-weight: bold; color: rgb(0, 0, 128);&amp;quot;&amp;gt;$BOOTVECTOR&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;Remarks&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
By default an IVR is always created for normal applications. There is no good reason not to create an IVR for a normal application.&lt;br /&gt;
&lt;br /&gt;
When making a boot loader application things are different. A boot loader application resides in upper flash memory inside the boot area. And when the boot loader applications runs, it has special rights so it can update the flash memory which resides in the lower flash memory.&lt;br /&gt;
&lt;br /&gt;
The boot loader area size depends on the processor but is usual small. An interrupt vector table can use up to 250 bytes or more and it would be a waste of space in many cases. So by default the $LOADER directive which is used to create a boot loader application, will not create an IVR. The downside is that when you do not have an IVR you can not use interrupts.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
The $BOOTVECTOR directive will force the compiler to create an IVR when the $LOADER directive is used. This way your boot loader application will include an IVR and you can use interrupts in your code.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
[[File:Notice.jpg|notice]]The $BOOTVECTOR directive will only work when the processor has an option to move the IVR to the boot area using the IVSEL bit.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
By default the interrupts are located after address 0. Address 0 is the reset vector and usually contains a jump to the real code. Behind the reset address, a table with jumps to the interrupt routines is located. That the code contains an IVR is not enough&amp;amp;nbsp;: in case of a boot loader the interrupt table must be moved to the boot area. For this purpose most processors have a register and bit to switch the IVR between the normal address 0 and the boot loader address.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
In BASCOM you can use&amp;amp;nbsp;:&amp;amp;nbsp;&amp;lt;span style=&amp;quot;font-weight: bold;&amp;quot;&amp;gt;Config Intvectorselection = Enabled&amp;lt;/span&amp;gt;&amp;amp;nbsp;to set the selection to the boot area.&lt;br /&gt;
&lt;br /&gt;
When the boot loader application finishes, it is best to use a watchdog timeout to reset the processor so the intvector selection is set to the default address 0.&lt;br /&gt;
&lt;br /&gt;
Or you can use&amp;amp;nbsp;&amp;lt;span style=&amp;quot;font-weight: bold;&amp;quot;&amp;gt;Config Intvectorselection = Disabled&amp;lt;/span&amp;gt;&amp;amp;nbsp;in your main (normal) application before you enable the interrupts.&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
So in short you only need to add the $BOOTVECTOR directive and Config Intvectorselection = Enabled to your code. And do not forget to switch back the intvectorselection in the main application!&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;See also&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;[[$LOADER]]&amp;amp;nbsp;,&amp;amp;nbsp;&amp;lt;/span&amp;gt;[[CONFIG INTVECTORSELECTION|CONFIG INTVECTORSELECTION]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;font-family: Arial;&amp;quot;&amp;gt;&amp;amp;nbsp;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= &amp;lt;span class=&amp;quot;f_Header&amp;quot;&amp;gt;Example&amp;lt;/span&amp;gt; =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bascomavr&amp;quot;&amp;gt;&lt;br /&gt;
'-----------------------------------------------------------------&lt;br /&gt;
' (c) 1995-2013, MCS&lt;br /&gt;
' BootEDB-IVSEL.bas&lt;br /&gt;
' This Bootloader is for the BASCOM-EDB&lt;br /&gt;
' VERSION 4 of the BOOTLOADER.&lt;br /&gt;
' IMPORTANT :&lt;br /&gt;
' When changing the vector table in the boot loader you MUST&lt;br /&gt;
' reset the vector table in your code using :&lt;br /&gt;
' Config Intvectorselection = Disabled&lt;br /&gt;
' otherwise your code points to the wrong table&lt;br /&gt;
'-----------------------------------------------------------------&lt;br /&gt;
'The loader is supported by the IDE&lt;br /&gt;
 &lt;br /&gt;
$prog &amp;amp;HFF , &amp;amp;HE2 , &amp;amp;HDF , &amp;amp;HF8 ' generated. Take care that the chip supports all fuse bytes.'----------------------------------------------------------------&lt;br /&gt;
 &lt;br /&gt;
$crystal = 8000000&lt;br /&gt;
$baud = 38400 'this loader uses serial com&lt;br /&gt;
'It is VERY IMPORTANT that the baud rate matches the one of the boot loader&lt;br /&gt;
'do not try to use buffered com as we can not use interrupts&lt;br /&gt;
 &lt;br /&gt;
'This bootloader uses buffers serial input&lt;br /&gt;
Config Serialin = Buffered , Size = 250&lt;br /&gt;
 &lt;br /&gt;
'in order to use interrupts in a bootloader, the processor must support IVSEL&lt;br /&gt;
'since the vector table occupies space some processors will not support it.&lt;br /&gt;
$bootvector ' put int table into bootloader section so we can use interrupts&lt;br /&gt;
Config Intvectorselection = Enabled ' enabled means that the vector table points to the boot section&lt;br /&gt;
 &lt;br /&gt;
'since this boot loader uses interrupts we need to activate them but :&lt;br /&gt;
'AFTER the interrupt vector table is enabled&lt;br /&gt;
Enable Interrupts&lt;br /&gt;
 &lt;br /&gt;
$regfile = &amp;quot;m88def.dat&amp;quot;&lt;br /&gt;
Const Loaderchip = 88&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
#if Loaderchip = 88 'Mega88&lt;br /&gt;
$loader = $c00 'this address you can find in the datasheet&lt;br /&gt;
'the loader address is the same as the boot vector address&lt;br /&gt;
Const Maxwordbit = 5&lt;br /&gt;
Const Maxpages = 96 - 1 ' total WORD pages available for program&lt;br /&gt;
Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0&lt;br /&gt;
#endif&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
Const Maxword =(2 ^ Maxwordbit) * 2 '128&lt;br /&gt;
Const Maxwordshift = Maxwordbit + 1&lt;br /&gt;
Const Cdbg = 0 ' leave this to 0&lt;br /&gt;
 &lt;br /&gt;
#if Cdbg&lt;br /&gt;
Print Maxword&lt;br /&gt;
Print Maxwordshift&lt;br /&gt;
' Print Maxpages&lt;br /&gt;
#endif&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'Dim the used variables&lt;br /&gt;
Dim Bstatus As Byte , Bretries As Byte , Bblock As Byte , Bblocklocal As Byte&lt;br /&gt;
Dim Bcsum1 As Byte , Bcsum2 As Byte , Buf(128) As Byte , Csum As Byte&lt;br /&gt;
Dim J As Byte , Spmcrval As Byte ' self program command byte value&lt;br /&gt;
 &lt;br /&gt;
Dim Z As Long 'this is the Z pointer word&lt;br /&gt;
Dim Vl As Byte , Vh As Byte ' these bytes are used for the data values&lt;br /&gt;
Dim Wrd As Word , Page As Word 'these vars contain the page and word address&lt;br /&gt;
Dim Bkind As Byte , Bstarted As Byte&lt;br /&gt;
'Mega 88 : 32 words, 128 pages&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'in this loader we may not disable interrupts !&lt;br /&gt;
'Disable Interrupts 'we do not use ints&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'Waitms 100 'wait 100 msec sec&lt;br /&gt;
'We start with receiving a file. The PC must send this binary file&lt;br /&gt;
 &lt;br /&gt;
'some constants used in serial com&lt;br /&gt;
Const Nak = &amp;amp;H15&lt;br /&gt;
Const Cack = &amp;amp;H06&lt;br /&gt;
Const Can = &amp;amp;H18&lt;br /&gt;
 &lt;br /&gt;
'we use some leds as indication in this sample , you might want to remove it&lt;br /&gt;
Config Pind.7 = Output&lt;br /&gt;
Portd.7 = 0&lt;br /&gt;
 &lt;br /&gt;
$timeout = 200000 'we use a timeout&lt;br /&gt;
'When you get LOADER errors during the upload, increase the timeout value&lt;br /&gt;
'for example at 16 Mhz, use 200000&lt;br /&gt;
 &lt;br /&gt;
Bretries = 5 'we try 5 times&lt;br /&gt;
Testfor123:&lt;br /&gt;
#if Cdbg&lt;br /&gt;
 Print &amp;quot;Try &amp;quot; ; Bretries&lt;br /&gt;
 Print &amp;quot;Wait&amp;quot;&lt;br /&gt;
#endif&lt;br /&gt;
 Bstatus = Waitkey() 'wait for the loader to send a byte&lt;br /&gt;
#if Cdbg&lt;br /&gt;
 Print &amp;quot;Got &amp;quot;&lt;br /&gt;
#endif&lt;br /&gt;
 &lt;br /&gt;
Print Chr(bstatus);&lt;br /&gt;
 &lt;br /&gt;
If Bstatus = 123 Then 'did we received value 123 ?&lt;br /&gt;
 Bkind = 0 'normal flash loader&lt;br /&gt;
 Goto Loader&lt;br /&gt;
Elseif Bstatus = 124 Then ' EEPROM&lt;br /&gt;
 Bkind = 1 ' EEPROM loader&lt;br /&gt;
 Goto Loader&lt;br /&gt;
Elseif Bstatus &amp;lt;&amp;gt; 0 Then&lt;br /&gt;
 Decr Bretries&lt;br /&gt;
 If Bretries &amp;lt;&amp;gt; 0 Then Goto Testfor123 'we test again&lt;br /&gt;
End If&lt;br /&gt;
 &lt;br /&gt;
For J = 1 To 10 'this is a simple indication that we start the normal reset vector&lt;br /&gt;
 Toggle Portd.7 : Waitms 100&lt;br /&gt;
Next&lt;br /&gt;
 &lt;br /&gt;
#if Cdbg&lt;br /&gt;
 Print &amp;quot;RESET&amp;quot;&lt;br /&gt;
#endif&lt;br /&gt;
Goto _reset 'goto the normal reset vector at address 0&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'this is the loader routine. It is a Xmodem-checksum reception routine&lt;br /&gt;
Loader:&lt;br /&gt;
#if Cdbg&lt;br /&gt;
 Print &amp;quot;Clear buffer&amp;quot;&lt;br /&gt;
#endif&lt;br /&gt;
Do&lt;br /&gt;
 Bstatus = Waitkey()&lt;br /&gt;
Loop Until Bstatus = 0&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
For J = 1 To 3 'this is a simple indication that we start the normal reset vector&lt;br /&gt;
 Toggle Portd.7 : Waitms 250&lt;br /&gt;
Next&lt;br /&gt;
 &lt;br /&gt;
If Bkind = 0 Then&lt;br /&gt;
 Spmcrval = 3 : Gosub Do_spm ' erase the first page&lt;br /&gt;
 Spmcrval = 17 : Gosub Do_spm ' re-enable page&lt;br /&gt;
End If&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Bretries = 10 'number of retries&lt;br /&gt;
 &lt;br /&gt;
Do&lt;br /&gt;
 Bblocklocal = 1&lt;br /&gt;
 Bstarted = 0 ' we were not started yet&lt;br /&gt;
 Csum = 0 'checksum is 0 when we start&lt;br /&gt;
 Print Chr(nak); ' firt time send a nack&lt;br /&gt;
 Do&lt;br /&gt;
 &lt;br /&gt;
 Bstatus = Waitkey() 'wait for statuse byte&lt;br /&gt;
 &lt;br /&gt;
 Select Case Bstatus&lt;br /&gt;
 Case 1: ' start of heading, PC is ready to send&lt;br /&gt;
 Csum = 1 'checksum is 1&lt;br /&gt;
 Bblock = Waitkey() : Csum = Csum + Bblock 'get block&lt;br /&gt;
 Bcsum1 = Waitkey() : Csum = Csum + Bcsum1 'get checksum first byte&lt;br /&gt;
 For J = 1 To 128 'get 128 bytes&lt;br /&gt;
 Buf(j) = Waitkey() : Csum = Csum + Buf(j)&lt;br /&gt;
 Next&lt;br /&gt;
 Bcsum2 = Waitkey() 'get second checksum byte&lt;br /&gt;
 If Bblocklocal = Bblock Then 'are the blocks the same?&lt;br /&gt;
 If Bcsum2 = Csum Then 'is the checksum the same?&lt;br /&gt;
 Gosub Writepage 'yes go write the page&lt;br /&gt;
 Print Chr(cack); 'acknowledge&lt;br /&gt;
 Incr Bblocklocal 'increase local block count&lt;br /&gt;
 Else 'no match so send nak&lt;br /&gt;
 Print Chr(nak);&lt;br /&gt;
 End If&lt;br /&gt;
 Else&lt;br /&gt;
 Print Chr(nak); 'blocks do not match&lt;br /&gt;
 End If&lt;br /&gt;
 Case 4: ' end of transmission , file is transmitted&lt;br /&gt;
 If Wrd &amp;gt; 0 Then 'if there was something left in the page&lt;br /&gt;
 Wrd = 0 'Z pointer needs wrd to be 0&lt;br /&gt;
 Spmcrval = 5 : Gosub Do_spm 'write page&lt;br /&gt;
 Spmcrval = 17 : Gosub Do_spm ' re-enable page&lt;br /&gt;
 End If&lt;br /&gt;
 Print Chr(cack); ' send ack and ready&lt;br /&gt;
 &lt;br /&gt;
 Portd.7 = 0 ' simple indication that we are finished and ok&lt;br /&gt;
 Waitms 20&lt;br /&gt;
 Goto _reset ' start new program&lt;br /&gt;
 Case &amp;amp;H18: ' PC aborts transmission&lt;br /&gt;
 Goto _reset ' ready&lt;br /&gt;
 Case 123 : Exit Do 'was probably still in the buffer&lt;br /&gt;
 Case 124 : Exit Do&lt;br /&gt;
 Case Else&lt;br /&gt;
 Exit Do ' no valid data&lt;br /&gt;
 End Select&lt;br /&gt;
 Loop&lt;br /&gt;
 If Bretries &amp;gt; 0 Then 'attempte left?&lt;br /&gt;
 Waitms 1000&lt;br /&gt;
 Decr Bretries 'decrease attempts&lt;br /&gt;
 Else&lt;br /&gt;
 Goto _reset 'reset chip&lt;br /&gt;
 End If&lt;br /&gt;
Loop&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'write one or more pages&lt;br /&gt;
Writepage:&lt;br /&gt;
If Bkind = 0 Then&lt;br /&gt;
 For J = 1 To 128 Step 2 'we write 2 bytes into a page&lt;br /&gt;
 Vl = Buf(j) : Vh = Buf(j + 1) 'get Low and High bytes&lt;br /&gt;
 ! lds r0, {vl} 'store them into r0 and r1 registers&lt;br /&gt;
 ! lds r1, {vh}&lt;br /&gt;
 Spmcrval = 1 : Gosub Do_spm 'write value into page at word address&lt;br /&gt;
 Wrd = Wrd + 2 ' word address increases with 2 because LS bit of Z is not used&lt;br /&gt;
 If Wrd = Maxword Then ' page is full&lt;br /&gt;
 Wrd = 0 'Z pointer needs wrd to be 0&lt;br /&gt;
 Spmcrval = 5 : Gosub Do_spm 'write page&lt;br /&gt;
 Spmcrval = 17 : Gosub Do_spm ' re-enable page&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 If Page &amp;lt; Maxpages Then 'only if we are not erasing the bootspace&lt;br /&gt;
 Page = Page + 1 'next page&lt;br /&gt;
 Spmcrval = 3 : Gosub Do_spm ' erase next page&lt;br /&gt;
 Spmcrval = 17 : Gosub Do_spm ' re-enable page&lt;br /&gt;
 Else&lt;br /&gt;
 Portd.7 = 0 : Waitms 200&lt;br /&gt;
 End If&lt;br /&gt;
 End If&lt;br /&gt;
 Next&lt;br /&gt;
 &lt;br /&gt;
Else 'eeprom&lt;br /&gt;
 For J = 1 To 128&lt;br /&gt;
 Writeeeprom Buf(j) , Wrd&lt;br /&gt;
 Wrd = Wrd + 1&lt;br /&gt;
 Next&lt;br /&gt;
End If&lt;br /&gt;
Toggle Portd.7 : Waitms 10 : Toggle Portd.7 'indication that we write&lt;br /&gt;
Return&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
Do_spm:&lt;br /&gt;
Bitwait Spmcsr.0 , Reset ' check for previous SPM complete&lt;br /&gt;
Bitwait Eecr.1 , Reset 'wait for eeprom&lt;br /&gt;
 &lt;br /&gt;
 Z = Page 'make equal to page&lt;br /&gt;
Shift Z , Left , Maxwordshift 'shift to proper place&lt;br /&gt;
 Z = Z + Wrd 'add word&lt;br /&gt;
! lds r30,{Z}&lt;br /&gt;
! lds r31,{Z+1}&lt;br /&gt;
 &lt;br /&gt;
#if Loaderchip = 128&lt;br /&gt;
 ! lds r24,{Z+2}&lt;br /&gt;
 ! sts rampz,r24 ' we need to set rampz also for the M128&lt;br /&gt;
#endif&lt;br /&gt;
 &lt;br /&gt;
Spmcsr = Spmcrval 'assign register&lt;br /&gt;
! spm 'this is an asm instruction&lt;br /&gt;
! nop&lt;br /&gt;
! nop&lt;br /&gt;
Return&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
'How you need to use this program:&lt;br /&gt;
'1- compile this program&lt;br /&gt;
'2- program into chip with sample elctronics programmer&lt;br /&gt;
'3- select MCS Bootloader from programmers&lt;br /&gt;
'4- compile a new program for example M88.bas&lt;br /&gt;
'5- press F4 and reset your micro&lt;br /&gt;
' the program will now be uploaded into the chip with Xmodem Checksum&lt;br /&gt;
' you can write your own loader.too&lt;br /&gt;
'A stand alone command line loader is also available&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Languages}}&lt;br /&gt;
&lt;br /&gt;
[[Category:BASCOM Language Reference]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>