mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
git-svn-id: https://cxbx.svn.sourceforge.net/svnroot/cxbx/branches/private/shogun/wip@147 587435c2-1f12-0410-b34b-ee784db558a2
23 lines
No EOL
586 B
C
23 lines
No EOL
586 B
C
// **************************************************************************
|
|
//
|
|
// CONIO.H : Standard Port IO routines
|
|
//
|
|
// **************************************************************************
|
|
#ifndef __CONIO_H__
|
|
#define __CONIO_H__
|
|
|
|
|
|
|
|
|
|
void _outb( unsigned short port, unsigned char data );
|
|
void _outw( unsigned short port, unsigned short data );
|
|
void _outd( unsigned short port, unsigned int data );
|
|
unsigned char _inb( unsigned short port );
|
|
unsigned short _inw( unsigned short port );
|
|
unsigned int _ind( unsigned short port );
|
|
|
|
|
|
|
|
|
|
|
|
#endif //__CONIO_H__
|