mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
New feature(s): - Network stack - Piping commands into a udpsend message Bug fix(es): -N/A
11 lines
152 B
C
11 lines
152 B
C
#ifndef PLATFORM_H
|
|
#define PLATFORM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void platform_init(void);
|
|
uint64_t p2v(uint64_t phys);
|
|
uint64_t v2p(uint64_t virt);
|
|
|
|
#endif
|