You can not 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
436 B
17 lines
436 B
#ifndef _CONFIG_H_
|
|
#define _CONFIG_H_
|
|
|
|
// we use only one HART (cpu) in fundamental experiments
|
|
#define NCPU 1
|
|
|
|
//interval of timer interrupt. added @lab1_3
|
|
#define TIMER_INTERVAL 1000000
|
|
|
|
// the maximum memory space that PKE is allowed to manage. added @lab2_1
|
|
#define PKE_MAX_ALLOWABLE_RAM 128 * 1024 * 1024
|
|
|
|
// the ending physical address that PKE observes. added @lab2_1
|
|
#define PHYS_TOP (DRAM_BASE + PKE_MAX_ALLOWABLE_RAM)
|
|
|
|
#endif
|