asm: add different assembler scope types

This commit is contained in:
2024-12-09 20:37:42 +00:00
parent 8f3a035636
commit 51fe7a0a71
7 changed files with 239 additions and 2 deletions

9
asm/assembler/class.c Normal file
View File

@@ -0,0 +1,9 @@
#include "assembler.h"
struct class_scope {
};
const struct assembler_scope_type class_scope_type = {
.s_scope_size = sizeof(struct class_scope),
};