mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
More refactoring and renaming
This commit is contained in:
@@ -16,7 +16,7 @@ void charmap_Push();
|
||||
void charmap_Pop();
|
||||
void charmap_Add(std::string const &mapping, uint8_t value);
|
||||
bool charmap_HasChar(std::string const &input);
|
||||
void charmap_Convert(std::string const &input, std::vector<uint8_t> &output);
|
||||
std::vector<uint8_t> charmap_Convert(std::string const &input);
|
||||
size_t charmap_ConvertNext(std::string_view &input, std::vector<uint8_t> *output);
|
||||
|
||||
#endif // RGBDS_ASM_CHARMAP_HPP
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
struct Expression;
|
||||
struct FileStackNode;
|
||||
|
||||
extern std::string objectName;
|
||||
extern std::string objectFileName;
|
||||
|
||||
void out_RegisterNode(std::shared_ptr<FileStackNode> node);
|
||||
void out_SetFileName(std::string const &name);
|
||||
|
||||
@@ -84,9 +84,9 @@ void sect_EndUnion();
|
||||
void sect_CheckUnionClosed();
|
||||
|
||||
void sect_AbsByte(uint8_t b);
|
||||
void sect_AbsByteGroup(uint8_t const *s, size_t length);
|
||||
void sect_AbsWordGroup(uint8_t const *s, size_t length);
|
||||
void sect_AbsLongGroup(uint8_t const *s, size_t length);
|
||||
void sect_AbsByteString(std::vector<uint8_t> const &s);
|
||||
void sect_AbsWordString(std::vector<uint8_t> const &s);
|
||||
void sect_AbsLongString(std::vector<uint8_t> const &s);
|
||||
void sect_Skip(uint32_t skip, bool ds);
|
||||
void sect_RelByte(Expression &expr, uint32_t pcShift);
|
||||
void sect_RelBytes(uint32_t n, std::vector<Expression> &exprs);
|
||||
|
||||
Reference in New Issue
Block a user