You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
443 B
C
17 lines
443 B
C
#ifndef H_KERNEL
|
|
#define H_KERNEL
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#define XLEN 32 // 32 bit system
|
|
#define PROCESS_COUNT 32 // number of concurrent processes
|
|
#define NUM_BINARIES 16 // number of binaries loaded simultaneously
|
|
|
|
// scheduler settings
|
|
#define TIME_SLICE_LEN 100 // number of cpu time ticks per slice
|
|
|
|
// init function
|
|
extern __attribute__((__noreturn__)) void init();
|
|
|
|
#endif |