mirror of
https://github.com/fachat/xa65.git
synced 2025-01-19 08:30:03 +00:00
24 lines
306 B
C
24 lines
306 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 */
|
|
|
|
* = $0000
|
|
|
|
lda #AA
|
|
jmp buggy
|
|
rts
|
|
|
|
#include "over.h"
|
|
|
|
/* the buggy will force a line number to be printed */
|
|
|
|
buggy
|