1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/test/err/bss-name-conflict.c
2017-03-21 22:35:25 +01:00

21 lines
330 B
C

/*
!!DESCRIPTION!! conflicting bss-name pragmas
!!ORIGIN!! cc65 regression tests
!!LICENCE!! Public Domain
!!AUTHOR!! Piotr Fusik
*/
/*
see: https://github.com/cc65/cc65/issues/409
*/
char oam_off;
#pragma bss-name (push,"ZEROPAGE")
char oam_off;
#pragma bss-name (pop)
int main(void)
{
return 0;
}