mirror of
https://github.com/zeldaret/tmc
synced 2026-06-01 01:39:50 -04:00
moved asset_processor to new location
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#include "offsets.h"
|
||||
|
||||
OffsetCalculator::OffsetCalculator(std::filesystem::path outputFile, int baseOffset): baseOffset(baseOffset) {
|
||||
output = std::ofstream(outputFile);
|
||||
}
|
||||
|
||||
void OffsetCalculator::addAsset(int start, std::string symbol) {
|
||||
this->output << "\t.equiv offset_" << symbol << ", " << start - this->baseOffset << std::endl;
|
||||
}
|
||||
Reference in New Issue
Block a user