?login_element?

Subversion Repositories NedoOS

Rev

Rev 8 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #ifndef __RAM_FUNCTIONS_H
  3. #define __RAM_FUNCTIONS_H
  4.  
  5. #define START_ADDR      0x60000000
  6.  
  7. void WriteDataToRAM(uint32_t, uint32_t);
  8. void WriteByteToRAM(uint32_t, unsigned char);
  9. void CallRAM(uint32_t);
  10. uint32_t TestData(uint32_t, uint32_t);
  11.  
  12. #endif  //__RAM_FUNCTIONS_H
  13.  
  14.