1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00
cc65/test/val/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;
}