File: delay.h

package info (click to toggle)
invaders 1.0.0-19
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 324 kB
  • sloc: ansic: 2,231; sh: 56; asm: 28; makefile: 17
file content (12 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __DELAY_H
#define __DELAY_H

#include "types.h"

// initialize the keyboard before using delay_wait !!!

// t in seconds.
// x = 1193180 / t
void delay_wait (uint32 x);

#endif