15 lines
243 B
C
15 lines
243 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
#include "../include/types.h"
|
|
|
|
uint8 inportb(uint16 _port);
|
|
void outportb(uint16 _port, uint8 _data);
|
|
uint8_t get_rtc(uint8_t reg);
|
|
void get_fancy_datetime();
|
|
|
|
#define inb inportb
|
|
#define outb outportb
|
|
|
|
#endif
|
|
|