mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
11 lines
157 B
C
11 lines
157 B
C
|
#ifndef __HW_COMMON_H
|
||
|
#define __HW_COMMON_H
|
||
|
|
||
|
#ifdef __ASSEMBLER__
|
||
|
#define MMPTR(x) x
|
||
|
#else
|
||
|
#define MMPTR(x) (*((volatile unsigned int *)(x)))
|
||
|
#endif
|
||
|
|
||
|
#endif
|