mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:23:13 -06:00
12 lines
191 B
C
12 lines
191 B
C
#ifndef __DELAY
|
|
#define __DELAY
|
|
|
|
#include <stdlib.h>
|
|
|
|
extern void delay(void);
|
|
extern void delay_20ms(void);
|
|
extern void delay_short(void);
|
|
extern void delay_medium(void);
|
|
|
|
#endif
|