Files
PCCCompiler/PCCcompiler/codegen.h
2026-02-06 16:04:23 +01:00

12 lines
232 B
C++

#ifndef CODEGEN_H
#define CODEGEN_H
#include <string>
#include "compiler_types.h"
// G³ówna funkcja generuj¹ca kod ASM na podstawie stanu kompilatora
std::string generateAssembly(const CompilerState& state);
#endif // CODEGEN_H