Compare commits

...

1 Commits

Author SHA1 Message Date
François Autin
8fe1e03309
Changed default memory parameters 2023-05-10 12:59:36 +02:00

View File

@ -97,8 +97,8 @@ pub fn read_settings() -> Result<Settings, Error> {
/// FIXME: Does not cover the whole configuration yet /// FIXME: Does not cover the whole configuration yet
pub fn get_debug_configuration() -> Settings { pub fn get_debug_configuration() -> Settings {
let mut settings_map = Settings::new(); let mut settings_map = Settings::new();
settings_map.insert(MachineSettingKey::PageSize, 2048); settings_map.insert(MachineSettingKey::PageSize, 128);
settings_map.insert(MachineSettingKey::NumPhysPages, 8192); settings_map.insert(MachineSettingKey::NumPhysPages, 40000000);
settings_map.insert(MachineSettingKey::UserStackSize, 4096); settings_map.insert(MachineSettingKey::UserStackSize, 4096);
settings_map settings_map
} }