Difference between revisions of "MC-Basic:OUTB"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= Outb (''<address>, <value>'') |AVAILABILITY= All versions |DESCRIPTION= This command writes a byte to the specified I/O space address. |TYPE…')
 
m (1 revision)
(No difference)

Revision as of 16:09, 13 December 2010

This command writes a byte to the specified I/O space address.

Syntax

Outb (<address>, <value>)

Availability

All versions

Type

<address>: Long
<value>: Long

Range

<address>: 0x100 to 0xFFFF
<value>: 0 to 255

Scope

Task or Terminal

Limitations

Write-Only

Examples

Outb (256, 255)                              ‘write the value 255 to I/O address 256

See Also