diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2021-05-05 13:56:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-05 13:56:39 -0400 |
| commit | cc52fe66109f0ae9dfec8280e439a567796db787 (patch) | |
| tree | 1f900f53a8fc39ad33d99dc9f1f67288f4ec2c03 /ZAPD/ZFile.h | |
| parent | 8fc46959753b946accf56c9e410a2e9d136815d6 (diff) | |
Background array declarations now use string literal (#128)
* Initial implementation
* Fixed typo
* Minor tweaks
* Fixed merge issues
Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
Diffstat (limited to 'ZAPD/ZFile.h')
| -rw-r--r-- | ZAPD/ZFile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ZAPD/ZFile.h b/ZAPD/ZFile.h index 80411e0..30a0e51 100644 --- a/ZAPD/ZFile.h +++ b/ZAPD/ZFile.h @@ -60,6 +60,9 @@ public: std::string varType, std::string varName, size_t arrayItemCnt, std::string body, bool isExternal); Declaration* AddDeclarationArray(uint32_t address, DeclarationAlignment alignment, + size_t size, std::string varType, std::string varName, + std::string arrayItemCntStr, std::string body); + Declaration* AddDeclarationArray(uint32_t address, DeclarationAlignment alignment, DeclarationPadding padding, size_t size, std::string varType, std::string varName, size_t arrayItemCnt, std::string body); Declaration* AddDeclarationPlaceholder(uint32_t address); |
