1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-17 20:29:32 +00:00
xa65/xa/tests/cpp/over.c
2011-12-16 23:04:51 +01:00

20 lines
287 B
C

/* #define BUG */
#ifdef BUG
#define WW AA
#define AA WW
#else
#define CC 1
#define WW CC
#define AA WW
#endif
/* This has a .c extension for those cc -E's that won't deal with .asm */
lda #AA
jmp buggy
rts
#include "over.h"
/* the buggy will force a line number to be printed */