Difference between revisions of "MC-Basic:OUTB"
m (Text replace - "''<value>''" to "<''value''>") |
m (Text replace - "''<address>, <value>''" to "<''address''>, <''value''>") |
||
Line 4: | Line 4: | ||
|SYNTAX= | |SYNTAX= | ||
− | Outb ('' | + | Outb (<''address''>, <''value''>) |
|AVAILABILITY= | |AVAILABILITY= |
Revision as of 14:59, 17 March 2014
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