chore: directory structure

This commit is contained in:
2025-09-13 14:39:22 +08:00
parent 7b4bd2c68f
commit 4f629a9091
491 changed files with 716 additions and 49 deletions

View File

@@ -0,0 +1,14 @@
#include "bytecode.h"
#define BEGIN_MAP(maj, min) \
int python_##maj##_##min##_map(int id) \
{ \
switch (id) {
#define MAP_OP(op, name) \
case op: return Pyc::name;
#define END_MAP() \
default: return Pyc::PYC_INVALID_OPCODE; \
} \
}