Changeset 3af73566 in rtems
- Timestamp:
- 02/11/11 11:48:20 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- d390156
- Parents:
- 35ad0b4
- Location:
- c/src/lib/libbsp/arm/nds
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/nds/ChangeLog
r35ad0b4 r3af73566 1 2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org> 2 3 * console/console.c, dswifi/arm9/source/wifi_arm9.c, tools/bin2s.c: 4 Use "__asm__" instead of "asm" for improved c99-compliance. 5 1 6 2011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org> 2 7 -
c/src/lib/libbsp/arm/nds/console/console.c
r35ad0b4 r3af73566 39 39 { 40 40 #ifdef TESTSUITE 41 asmvolatile ("swi $0x1");41 __asm__ volatile ("swi $0x1"); 42 42 #endif 43 43 consolePrintChar (c); -
c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c
r35ad0b4 r3af73566 62 62 63 63 void sgIP_IntrWaitEvent() { 64 // __asm ( ".ARM\n swi 0x060000\n" );64 // __asm__ ( ".ARM\n swi 0x060000\n" ); 65 65 int i,j; 66 66 j=0; -
c/src/lib/libbsp/arm/nds/tools/bin2s.c
r35ad0b4 r3af73566 2 2 $Id$ 3 3 4 bin2s: convert a binary file to a gcc asm 4 bin2s: convert a binary file to a gcc asm-module 5 5 for gfx/foo.bin it'll write foo_bin (an array of char) 6 6 foo_bin_end, and foo_bin_len (an unsigned int)
Note: See TracChangeset
for help on using the changeset viewer.