Options.py (10803:a91eb7b4a442) Options.py (10993:4e27d8806403)
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 92 unchanged lines hidden (view full) ---

101 parser.add_option("-l", "--lpae", action="store_true")
102 parser.add_option("-V", "--virtualisation", action="store_true")
103
104 parser.add_option("--memchecker", action="store_true")
105
106 # Cache Options
107 parser.add_option("--external-memory-system", type="string",
108 help="use external ports of this port_type for caches")
1# Copyright (c) 2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 92 unchanged lines hidden (view full) ---

101 parser.add_option("-l", "--lpae", action="store_true")
102 parser.add_option("-V", "--virtualisation", action="store_true")
103
104 parser.add_option("--memchecker", action="store_true")
105
106 # Cache Options
107 parser.add_option("--external-memory-system", type="string",
108 help="use external ports of this port_type for caches")
109 parser.add_option("--tlm-memory", type="string",
110 help="use external port for SystemC TLM cosimulation")
109 parser.add_option("--caches", action="store_true")
110 parser.add_option("--l2cache", action="store_true")
111 parser.add_option("--fastmem", action="store_true")
112 parser.add_option("--num-dirs", type="int", default=1)
113 parser.add_option("--num-l2caches", type="int", default=1)
114 parser.add_option("--num-l3caches", type="int", default=1)
115 parser.add_option("--l1d_size", type="string", default="64kB")
116 parser.add_option("--l1i_size", type="string", default="32kB")

--- 182 unchanged lines hidden ---
111 parser.add_option("--caches", action="store_true")
112 parser.add_option("--l2cache", action="store_true")
113 parser.add_option("--fastmem", action="store_true")
114 parser.add_option("--num-dirs", type="int", default=1)
115 parser.add_option("--num-l2caches", type="int", default=1)
116 parser.add_option("--num-l3caches", type="int", default=1)
117 parser.add_option("--l1d_size", type="string", default="64kB")
118 parser.add_option("--l1i_size", type="string", default="32kB")

--- 182 unchanged lines hidden ---