mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
10 lines
248 B
C++
10 lines
248 B
C++
|
|
#include "compiler.h"
|
|
|
|
|
|
std::string Compiler::FileToConstant(const std::string &FileName, const std::string &extension)
|
|
{
|
|
std::string f = SysLib::RemoveFileExtension(FileName);
|
|
return "$" + FileName + " DC8 \"" + FileName + "\", 8\r\n";
|
|
}
|