mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-11 12:46:37 +08:00
13 lines
246 B
C
13 lines
246 B
C
#ifndef __KERNELCPU_H
|
|
#define __KERNELCPU_H
|
|
|
|
#include <hw/common.h>
|
|
|
|
#define KERNELCPU_EXEC_ADDRESS 0x40020000
|
|
#define KERNELCPU_PAYLOAD_ADDRESS 0x40024000
|
|
|
|
void kernelcpu_start(void *addr);
|
|
void kernelcpu_stop(void);
|
|
|
|
#endif /* __KERNELCPU_H */
|