-
Notifications
You must be signed in to change notification settings - Fork 78
N: SIO Command 'W' Write
Thomas Cherryhomes edited this page May 9, 2020
·
4 revisions
Write the requested number of bytes out to the protocol channel.
| DCB | Value |
|---|---|
| DDEVIC | $71 |
| DUNIT | $01 - $04 |
| DCOMND | $57 'W' |
| DSTATS | $80 |
| DBUF | NULL |
| DTIMLO | $0F |
| DBYT | # of bytes to write |
| DAUX1 | # of bytes to write LO |
| DAUX2 | # of bytes to write HI |
if (xmit_buffer_len>0)
{
OS.dcb.ddevic=0x71;
OS.dcb.dunit=1;
OS.dcb.dcomnd='W';
OS.dcb.dstats=0x80;
OS.dcb.dbuf=&xmit_buffer;
OS.dcb.dtimlo=0x0f;
OS.dcb.dbyt=xmit_buffer_len;
OS.dcb.daux1=xmit_buffer_len;
OS.dcb.daux2=0;
siov();
xmit_buffer_len=0;
return;
}
Put other related command links here.
Copyright 2024 Contributors to the FujiNetWIFI project.
Join us on Discord: https://discord.gg/7MfFTvD
- Home
- What is FujiNet?
- The Definition of Done
- Board bring up for FujiNet Platform.IO code
- The Complete Linux CLI Guide
- The Complete macOS CLI Guide
- Development Env for Apps
- FujiNet-Development-Guidelines
- System Quickstarts
- FujiNet Flasher
- Setting up a TNFS Server
- FujiNet Configuration File: fnconfig.ini
- AppKey Registry - SIO Command $DC Open App Key
- CP-M Support
- BBS
- Official Hardware Versions
- Prototype Board Revisions
- FujiNet Development Guidelines
- Atari Programming
- Apple Programming
- C64 Programming
- ADAM Programming
- Testing Plan
- Hacker List
- FujiNet VirtualMachine