1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00
cc65/test/misc/bug760.c

13 lines
180 B
C
Raw Normal View History

2020-07-13 13:13:22 +00:00
/* bug#760 - Error when using macros as pragma arguments */
#include <stdlib.h>
#define BANK "PRG0"
#pragma rodata-name(push, BANK)
int main(void)
{
return EXIT_SUCCESS;
}