source: soft/giet_vm/libs/libsrl/srl_private_types.h @ 178

Last change on this file since 178 was 178, checked in by karaoui, 12 years ago

updating libs.

File size: 298 bytes
Line 
1#ifndef SRL_PRIVATE_TYPES_H
2#define SRL_PRIVATE_TYPES_H
3
4/**
5 * @file
6 * @module{SRL}
7 * @short Abstract types definitions
8 */
9
10
11
12/**
13 * copy to the cache avoiding the optimisations done the compiler (volatile)
14 */
15#define cpu_mem_write_32(addr, data) *((volatile uint32_t*)(addr)) = data
16
17#endif
Note: See TracBrowser for help on using the repository browser.