1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 19:55:09 +00:00

test for bug #1933

This commit is contained in:
mrdudz 2022-11-28 06:26:47 +01:00
parent 15eb1c5f5e
commit 61ee5fe1d5

9
test/val/bug1933.c Normal file
View File

@ -0,0 +1,9 @@
/* bug #1933 - wrong printf specifier breaks data lines */
unsigned char info_signature[3] = {3, 21, 63 | 0x80};
int main(void)
{
return 0;
}