From: Luke Kenneth Casson Leighton Date: Mon, 16 Aug 2021 19:52:56 +0000 (+0100) Subject: bring qemu sim size down to 1GB X-Git-Tag: xlen-bcd~121 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eba6fb79c3f0049a14ce6d8817d638ce3506bc3f;p=openpower-isa.git bring qemu sim size down to 1GB --- diff --git a/src/openpower/simulator/qemu.py b/src/openpower/simulator/qemu.py index a00c5647..ea3b1156 100644 --- a/src/openpower/simulator/qemu.py +++ b/src/openpower/simulator/qemu.py @@ -5,13 +5,13 @@ launch_args_be = ['qemu-system-ppc64', '-machine', 'powernv9', '-cpu', 'power9', '-nographic', - '-s', '-S', '-m', 'size=4096'] + '-s', '-S', '-m', 'size=1024'] launch_args_le = ['qemu-system-ppc64le', '-machine', 'powernv9', '-cpu', 'power9', '-nographic', - '-s', '-S', '-m', 'size=4096'] + '-s', '-S', '-m', 'size=1024'] def swap_order(x, nbytes):