RISC-V operating system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rovo/kernel/macro.h

10 lines
227 B

#ifndef _COMMON_MACROS_H
#define _COMMON_MACROS_H
#define F_NAKED __attribute__((noreturn))
#define F_INTERRUPT __attribute__((interrupt))
#define S_PACKED __attribute__((packed))
#define static_assert _Static_assert
#endif