summaryrefslogtreecommitdiff
path: root/tools/src/asset_processor/assets/macroasm.cpp
diff options
context:
space:
mode:
authorHenny022p <info@henny022.de>2021-11-23 05:40:41 +0100
committerHenny022p <info@henny022.de>2021-11-23 05:40:41 +0100
commitbc4a8577f3f139a8d0b420e2decbbb9701d25c4c (patch)
tree180a00ab6fb3a51ec6776747610e56e231f4140e /tools/src/asset_processor/assets/macroasm.cpp
parent47a3e614a01598cf28f9f484c5405b522fd789fe (diff)
moved asset_processor to new location
Diffstat (limited to 'tools/src/asset_processor/assets/macroasm.cpp')
-rw-r--r--tools/src/asset_processor/assets/macroasm.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/src/asset_processor/assets/macroasm.cpp b/tools/src/asset_processor/assets/macroasm.cpp
new file mode 100644
index 00000000..c87f355b
--- /dev/null
+++ b/tools/src/asset_processor/assets/macroasm.cpp
@@ -0,0 +1,20 @@
+#include "macroasm.h"
+#include <fstream>
+
+std::filesystem::path BaseMacroAsmAsset::generateAssetPath() {
+ std::filesystem::path path = this->path;
+ return path.replace_extension(".s");
+}
+
+std::filesystem::path BaseMacroAsmAsset::generateBuildPath() {
+ std::filesystem::path path = this->path;
+ return path.replace_extension(".s");
+}
+
+void BaseMacroAsmAsset::extractBinary(const std::vector<char>& baserom) {
+ BaseAsset::extractBinary(baserom);
+ // Create dummy .s file that just incbins the .bin file.
+ std::ofstream out(this->assetPath);
+ out << "\t.incbin " << this->path << "\n";
+ out.close();
+} \ No newline at end of file