Difference between revisions of "MC-Basic:INPB"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "''<address>''" to "<''address''>")
Line 4: Line 4:
  
 
|SYNTAX=
 
|SYNTAX=
Inpb (''<address>'')
+
Inpb (<''address''>)
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Line 15: Line 15:
  
 
|TYPE=
 
|TYPE=
The ''<address>'' must be a Long expression. The function returns a Long value.
+
The <''address''> must be a Long expression. The function returns a Long value.
  
 
|RANGE=
 
|RANGE=
The ''<address>'' must be in the range 0x0 to 0xFFFF
+
The <''address''> must be in the range 0x0 to 0xFFFF
  
 
|UNITS=
 
|UNITS=

Revision as of 14:59, 17 March 2014

This command reads the value of a byte at the specified I/O space address.

IMPORTANT.svgIMPORTANT
THIS COMMAND IS OBSOLETE

Syntax

Inpb (<address>)

Availability

All versions

Type

The <address> must be a Long expression. The function returns a Long value.

Range

The <address> must be in the range 0x0 to 0xFFFF

Scope

Task or Terminal

Limitations

Read-Only

Examples

X=inpb (256)                            ‘read a byte and assign its value to variable X

?inpb(256)                                 ‘Read a byte

See Also