mirror of
https://github.com/dougg3/mac-rom-simm-programmer.git
synced 2024-11-12 03:04:36 +00:00
16 lines
203 B
C
16 lines
203 B
C
|
/*
|
||
|
* delay.h
|
||
|
*
|
||
|
* Created on: Dec 4, 2011
|
||
|
* Author: Doug
|
||
|
*/
|
||
|
|
||
|
#ifndef DELAY_H_
|
||
|
#define DELAY_H_
|
||
|
|
||
|
#include <util/delay.h>
|
||
|
|
||
|
#define DelayMS(ms) _delay_ms(ms)
|
||
|
|
||
|
#endif /* DELAY_H_ */
|