mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-02 10:43:57 +08:00
7 lines
144 B
C
7 lines
144 B
C
|
#define DEBUG 1
|
||
|
#ifdef CONFIG_COLDFIRE
|
||
|
#define BREAK asm volatile ("halt")
|
||
|
#else
|
||
|
#define BREAK *(volatile unsigned char *)0xdeadbee0 = 0
|
||
|
#endif
|