// w32p.h // // contains class definitions for Tseng ET4000/W32p chipsets // // The following line denies outside code access to certain // member functions of class vga. #define __w32p_h #include "vga.h" class _w32p : public vga { // Class w32p RevA public: _w32p( vga_info info ); // Constructor void _fxn1( int cmd ); // PCI Burst enable void _fxn2( int cmd ); // Enable memory-interleaving void _fxn3( int cmd ); // FIFO threshold control }; class _w32pb : public _w32p { // class w32p RevB and up public: _w32pb( vga_info info ) : _w32p( info ) // Constructor {;}; void _fxn4( int cmd ); // fast read/write control void _fxn5( int cmd ); // zero wait-state read/write control };