Difference between revisions of "MC-Basic:OLOAD$"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:OLOAD$ to MC-Basic:OLOAD$: Global renaming of Axystems: namespace into (Main):)
Line 41: Line 41:
 
|SEE ALSO=
 
|SEE ALSO=
 
* [[MC-Basic:OLOAD|OLOAD]]
 
* [[MC-Basic:OLOAD|OLOAD]]
* [[Axystems:MC-Basic:OUNLOAD|OUNLOAD]]
+
* [[MC-Basic:OUNLOAD|OUNLOAD]]
 
* [[Axystems:MC-Basic:OUNLOAD$|OUNLOAD$]]
 
* [[Axystems:MC-Basic:OUNLOAD$|OUNLOAD$]]
  
 
[[Category:Axystems:MC-Basic:C-Interface|OLOAD$]]
 
[[Category:Axystems:MC-Basic:C-Interface|OLOAD$]]
 
}}
 
}}

Revision as of 08:39, 22 May 2014

Loads object module into the system’s memory. The object file must be compiled by a GNU C compiler.  When OLOAD$ command fails, a diagnostic file named OLOAD.ERR containing the loading errors is created. The OLOAD.ERR can be retrieved.

Syntax

OLOAD$ <object file name string>

Availability

Since Version 4.5.3

Type

<object file name string>: string

Scope

Task , Config , Terminal

Examples

OLoad$ “myObj.o”


Common shared ObjName as string = “myObj.o”

OLoad$ ObjName

See Also