mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-28 06:04:19 +01:00
14 lines
179 B
C
14 lines
179 B
C
#ifndef __START_H__
|
|
#define __START_H__
|
|
|
|
#include "types.h"
|
|
|
|
void delay(u32 delay);
|
|
|
|
#define udelay(d) delay(247*(d)/10)
|
|
|
|
void debug_output(u8 byte);
|
|
void panic(u8 code);
|
|
|
|
#endif
|