1 #include "defs.h" 2 3 #ifdef BFIN 4 5 #include <bfin_sram.h> 6 7 #include "xlat/sram_alloc_flags.h" 8 SYS_FUNC(sram_alloc)9SYS_FUNC(sram_alloc) 10 { 11 /* size */ 12 tprintf("%lu, ", tcp->u_arg[0]); 13 /* flags */ 14 printflags64(sram_alloc_flags, tcp->u_arg[1], "???_SRAM"); 15 16 return RVAL_DECODED | RVAL_HEX; 17 } 18 19 #endif /* BFIN */ 20