forked from auracaster/openocd
- Fixes '+' whitespace
- Replace ')\(+\)(' with ') \1 ('.
- Replace ')\(+\)\(\w\)' with ') \1 \2'.
- Replace '\(\w\)\(+\)(' with '\1 \2 ('.
- Replace '\(\w\)\(+\)\(\w\)' with '\1 \2 \3'.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2373 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -62,9 +62,9 @@ typedef struct pic32mx_flash_bank_s
|
||||
* Note: These macros only work for KSEG0/KSEG1 addresses.
|
||||
*/
|
||||
#define KS1Virt2Phys(vaddr) ((vaddr)-0xA0000000)
|
||||
#define Phys2KS1Virt(paddr) ((paddr)+0xA0000000)
|
||||
#define Phys2KS1Virt(paddr) ((paddr) + 0xA0000000)
|
||||
#define KS0Virt2Phys(vaddr) ((vaddr)-0x80000000)
|
||||
#define Phys2KS0Virt(paddr) ((paddr)+0x80000000)
|
||||
#define Phys2KS0Virt(paddr) ((paddr) + 0x80000000)
|
||||
|
||||
/* pic32mx configuration register locations */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user