mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-16 09:30:00 +00:00
18 lines
778 B
C
18 lines
778 B
C
#pragma once
|
|
|
|
extern DWORD serialport;
|
|
|
|
void CommDestroy ();
|
|
void CommReset ();
|
|
void CommSetSerialPort (HWND,DWORD);
|
|
void CommUpdate (DWORD);
|
|
DWORD CommGetSnapshot(SS_IO_Comms* pSS);
|
|
DWORD CommSetSnapshot(SS_IO_Comms* pSS);
|
|
|
|
BYTE __stdcall CommCommand (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall CommControl (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall CommDipSw (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall CommReceive (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall CommStatus (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|
|
BYTE __stdcall CommTransmit (WORD pc, BYTE addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft);
|