Re: A89: Doors OS 0.7 Beta released


[Prev][Next][Index][Thread]

Re: A89: Doors OS 0.7 Beta released




>> It actually features:
>>  	- BSS sections
>>  
>
>what are these?

In an assembly program, a BSS section is a memory block which is allocated
only when the program is executed.

For example, if you have

	BSS
var1	ds.b	100

A 100 bytes block will be allocated when the program is executed.

The program can access it like a normal variable except whith lea and pea.

example:
	lea	var1,a0	;and not lea	var1(pc),a0

Xavier VASSOR
xvassor@mail.dotcom.fr


Xavier VASSOR
---The Doors Team
E-mail:xvassor@mail.dotcom.fr
Doors Homepage: http://doorshome.home.ml.org
ICQ:10241721


References: