initial commit!

This commit is contained in:
2026-02-19 23:28:57 +01:00
parent b0d594a9c0
commit 2a36117c25
1558 changed files with 74163 additions and 0 deletions

13
libs/libgccvb/asm.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef _LIBGCCVB_ASM_H
#define _LIBGCCVB_ASM_H
#define INT_ENABLE asm("CLI;")
#define INT_DISABLE asm("SEI;")
u32 jump_addr(void *addr);
extern void set_intlevel(u8 level);
extern int get_intlevel();
#endif