This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/os2/pdd/hrdev.h

14 lines
402 B
C

#define STRV( a ) a, sizeof( a ) // make vector of an array
/*
* Constants for i8253 timer
*/
enum {
i8253CounterZero = 0x40, // 8253 Counter Zero Register
i8253CtrlZeroOrTwo = 0x43, // 8253 Control Byte Register
i8253CmdReadCtrZero = 0x00, // Latch Command, LSB first, MSB second
i8253CmdInitCtrZero = 0x34, // Rate generator
};
extern VOID StratInit( REQP_INIT FAR *rp );