/* irg.h: CC65 functions for the infrared gateway (IRG) Version 1.0
; ------------------------------------------------------------------
; Copyright 1994 David Deaven version 1.0
; Permission to use, copy, and distribute this code is granted
; provided that it is not used for commercial applications.
; deaven@iastate.edu
*/
#ifndef _IRG_H_
#define _IRG_H_

int IRGinit(/* sample, ton, toff, repeat, tonmin, toffmax, qtime, totime */);
int IRGread(/* char *buffer, int size */);
int IRGwrite(/* char *buffer */);

#endif /* _IRG_H_ */
