Changeset 6c68186 in rtems
- Timestamp:
- 10/12/00 12:50:43 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 50bb7627
- Parents:
- b0005bb1
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/m68k/ChangeLog
rb0005bb1 r6c68186 1 2000-10-12 John S Gwynne <jgwynne@mrcday.com> 2 3 * sim.h: These changes enable RTEMS to automatically generate 4 the ram_init file used by gdb with the BDM patches. The 332 has 5 on-board chip select lines (for RAM and FLASH) that must be 6 configured before use of these peripherals. These patches parse 7 data from start.c where the chip select lines are configured in 8 the runtime executable and automatically generates the gdb 9 initialization file using the same settings. A great time saver. 10 A similar file, ram_init_FW (flash writable), is also generated 11 that the flash programming tool uses. 12 * BSP/start/start.c: Must be modified to support above. 13 * BSP/start/ram_init.ld, BSP/start/ram_init.sed: New files. 14 1 15 2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 16 -
c/src/exec/score/cpu/m68k/sim.h
rb0005bb1 r6c68186 69 69 /* SIM_CRB (SIM Control Register Block) base address of the SIM 70 70 control registers */ 71 /* not included in ram_init.h */ 71 #ifndef SIM_CRB 72 72 #if SIM_MM == 0 73 73 #define SIM_CRB 0x7ffa00 74 #else 74 #else /* SIM_MM */ 75 75 #undef SIM_MM 76 76 #define SIM_MM 1 77 77 #define SIM_CRB 0xfffa00 78 #endif 79 /* end not included in ram_init.h */ 80 78 #endif /* SIM_MM */ 79 #endif /* SIM_CRB */ 81 80 82 81 -
cpukit/score/cpu/m68k/ChangeLog
rb0005bb1 r6c68186 1 2000-10-12 John S Gwynne <jgwynne@mrcday.com> 2 3 * sim.h: These changes enable RTEMS to automatically generate 4 the ram_init file used by gdb with the BDM patches. The 332 has 5 on-board chip select lines (for RAM and FLASH) that must be 6 configured before use of these peripherals. These patches parse 7 data from start.c where the chip select lines are configured in 8 the runtime executable and automatically generates the gdb 9 initialization file using the same settings. A great time saver. 10 A similar file, ram_init_FW (flash writable), is also generated 11 that the flash programming tool uses. 12 * BSP/start/start.c: Must be modified to support above. 13 * BSP/start/ram_init.ld, BSP/start/ram_init.sed: New files. 14 1 15 2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 16 -
cpukit/score/cpu/m68k/rtems/m68k/sim.h
rb0005bb1 r6c68186 69 69 /* SIM_CRB (SIM Control Register Block) base address of the SIM 70 70 control registers */ 71 /* not included in ram_init.h */ 71 #ifndef SIM_CRB 72 72 #if SIM_MM == 0 73 73 #define SIM_CRB 0x7ffa00 74 #else 74 #else /* SIM_MM */ 75 75 #undef SIM_MM 76 76 #define SIM_MM 1 77 77 #define SIM_CRB 0xfffa00 78 #endif 79 /* end not included in ram_init.h */ 80 78 #endif /* SIM_MM */ 79 #endif /* SIM_CRB */ 81 80 82 81 -
cpukit/score/cpu/m68k/sim.h
rb0005bb1 r6c68186 69 69 /* SIM_CRB (SIM Control Register Block) base address of the SIM 70 70 control registers */ 71 /* not included in ram_init.h */ 71 #ifndef SIM_CRB 72 72 #if SIM_MM == 0 73 73 #define SIM_CRB 0x7ffa00 74 #else 74 #else /* SIM_MM */ 75 75 #undef SIM_MM 76 76 #define SIM_MM 1 77 77 #define SIM_CRB 0xfffa00 78 #endif 79 /* end not included in ram_init.h */ 80 78 #endif /* SIM_MM */ 79 #endif /* SIM_CRB */ 81 80 82 81
Note: See TracChangeset
for help on using the changeset viewer.