1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Support for string literals with embedded zeroes

This commit is contained in:
Brian Fiete 2020-05-17 06:11:54 -07:00
parent d11c79e43e
commit dc7ebf12c5
3 changed files with 20 additions and 5 deletions

View file

@ -51,7 +51,11 @@ public:
bool mIsLiteral;
bool mHasNoValue;
bool mIsReadOnly;
int mRegNum;
union
{
int mRegNum;
int mDataLen;
};
addr_target mSrcAddress;
public: