Deleted Added
sdiff udiff text old ( 8848:2629f0b99e8d ) new ( 8860:ccd525e43682 )
full compact
1# Copyright (c) 2012 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

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

403
404 code('%module(package="m5.internal") param_$cls')
405 code()
406 code('%{')
407 code('#include "params/$cls.hh"')
408 for param in params:
409 param.cxx_predecls(code)
410 cls.export_method_cxx_predecls(code)
411 code('%}')
412 code()
413
414 for param in params:
415 param.swig_predecls(code)
416 cls.export_method_swig_predecls(code)
417
418 code()

--- 727 unchanged lines hidden ---