Skip to content

N Device Put Record

Mike Kelley edited this page Jan 23, 2026 · 3 revisions

Description

Put the characters pointed to in the buffer by ICBAL/ICBAH, into the destination socket, until an ATASCII EOL ($9B) is reached. Once an EOL is found, the buffer up until $9B is flushed at once.

Parameters

  • ICBAL/ICBAH - Pointers to the buffer to send
  • ICBLL/ICBLH - Length of buffer to send

Returns

Standard CIO errors are returned, such as:

  • ERROR 137 - if the end of the buffer is reached before an ATASCII EOL ($9B) is found.

Examples

Atari BASIC

REM Put Record (sends string + EOL)
PRINT #1,"HELLO WORLD"

Clone this wiki locally