Newer
Older
ubix / src / sys / include / ubixos / io.h
@reddawg reddawg on 4 May 2002 496 bytes Woot Woot Libc
/**************************************************************************************
 Copyright (c) 2002
      The UbixOS Project

 $Id$
**************************************************************************************/

#ifndef _IO_H
#define _IO_H

inline unsigned char inportByte(unsigned int port);
inline unsigned char inportWord(unsigned int port);
inline void outportByte(unsigned int port,unsigned char value);
inline void outportWord(unsigned int port,unsigned int value);

#endif