#ifndef __GPIO_1_H__
#define __GPIO_1_H__

#include "stdint.h"

class GPIO
{
	public:
		static void InitializeGPIO(void);
		static void SetGPIO( unsigned int bits );
		static void ClearGPIO( unsigned int bits );
};

#endif // __GPIO_1_H__
