Changeset 98881 in vbox for trunk/src/VBox
- Timestamp:
- Mar 9, 2023 1:25:44 AM (23 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsPython.py
r98880 r98881 1752 1752 def renderCode(self, cchIndent = 0): 1753 1753 """ 1754 Renders the code for the statement. 1754 Renders the code for the statement. 1755 1755 """ 1756 1756 return ' ' * cchIndent + self.sName + '(' + ', '.join(self.asParams) + ');'; -
trunk/src/VBox/VMM/VMMAll/IEMAllThreadedPython.py
r98880 r98881 30 30 along with this program; if not, see <https://www.gnu.org/licenses>. 31 31 32 The contents of this file may alternatively be used under the terms 33 of the Common Development and Distribution License Version 1.0 34 (CDDL), a copy of it is provided in the "COPYING.CDDL" file included 35 in the VirtualBox distribution, in which case the provisions of the 36 CDDL are applicable instead of those of the GPL. 37 38 You may elect to license modified versions of this file under the 39 terms and conditions of either the GPL or the CDDL or both. 40 41 SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0 32 SPDX-License-Identifier: GPL-3.0-only 42 33 """ 43 34 __version__ = "$Revision$" … … 400 391 sys.exit(IEMThreadedGenerator().main(sys.argv)); 401 392 402
Note:
See TracChangeset
for help on using the changeset viewer.