M7350/kernel/arch/m68k/include/asm/dbg.h

7 lines
144 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#define DEBUG 1
#ifdef CONFIG_COLDFIRE
#define BREAK asm volatile ("halt")
#else
#define BREAK *(volatile unsigned char *)0xdeadbee0 = 0
#endif