mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
11 lines
253 B
C
11 lines
253 B
C
#ifndef __PROCESSOR_H
|
|
#define __PROCESSOR_H
|
|
|
|
#define PROCESSOR_MODE_COUNT 10
|
|
#define PROCESSOR_MODE_DESCLEN 32
|
|
|
|
void processor_list_modes(char *mode_descriptors);
|
|
void processor_start(int mode);
|
|
void processor_service(void);
|
|
|
|
#endif /* __VIDEOMODE_H */
|