Files
riscv-os/kernel/lib.h
2024-06-02 00:26:57 +02:00

11 lines
159 B
C

#pragma once
#define NULL (0)
typedef unsigned int uint32_t;
typedef int int32_t;
static_assert(sizeof(uint32_t) == 4);
void panic(const char*);