Wiki Home >> SIO-Command-$F4-Read-Host-Slots

SIO-Command-$F4-Read-Host-Slots


This is a command for Device $70 - The FujiNet Device itself (see SIO-Commands-for-Device-ID-$70).

Read Host Slots ($F4)

Description

Read the eight currently persisted hosts in FujiNet. All eight hosts are returned at once, as a 256 byte buffer, with each host name currently being 32 bytes each.

Parameters

DCBValue
DDEVIC$70
DUNIT$01
DCOMND$F4
DSTATS$40
DBUFPointer to a 256 byte buffer to hold all eight hosts, 32 characters per host.
DTIMLO$0F
DBYT256
DAUX1Not Used
DAUX2Not Used

Examples

CC65

union
{
  unsigned char host[8][32];
  unsigned char rawData[256];
} hostSlots;

// Query for host slots
OS.dcb.ddevic=0x70;
OS.dcb.dunit=1;
OS.dcb.dcomnd=0xF4; // Get host slots
OS.dcb.dstats=0x40;
OS.dcb.dbuf=&hostSlots.rawData;
OS.dcb.dtimlo=0x0f;
OS.dcb.dbyt=256;
OS.dcb.daux=0;
siov();

See Also


Wiki content is mirrored from the FujiNet Github Wiki