diff options
Diffstat (limited to 'include/asm-m68knommu/dbg.h')
-rw-r--r-- | include/asm-m68knommu/dbg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-m68knommu/dbg.h b/include/asm-m68knommu/dbg.h new file mode 100644 index 000000000000..27af3270f671 --- /dev/null +++ b/include/asm-m68knommu/dbg.h @@ -0,0 +1,6 @@ +#define DEBUG 1 +#ifdef CONFIG_COLDFIRE +#define BREAK asm volatile ("halt") +#else +#define BREAK *(volatile unsigned char *)0xdeadbee0 = 0 +#endif |