tape-kernel 1.0
a modular modern independent kernel
Loading...
Searching...
No Matches
pit.h
Go to the documentation of this file.
1
2#ifndef PIT_H
3#define PIT_H
4
5#include "types.h"
6
7#define pinit __pinit
8#define delay __delay
9
10void __pinit(void);
11void __delay(uint32_t ms);
12
13#endif
void __pinit(void)
pinit initializes the programmable interval timer
Definition pit.c:22
void __delay(uint32_t ms)
delay pauses execution for a number of milliseconds
Definition pit.c:46
unsigned int uint32_t
Definition types.h:30