mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
13 lines
180 B
C
13 lines
180 B
C
|
/* 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;
|
||
|
}
|