/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/csharp/ |
D | ast.py | 328 case str(code): 329 for line in code.splitlines(keepends=True): 363 def __init__(self, code: str, **kwargs) -> None: 365 self.code = code 368 return self.emit_comment_tokens(inline=True) + [self.code] 432 def __init__(self, code: str, ty: Type, **kwargs) -> None: 434 self.code = code 437 return self.emit_comment_tokens() + [self.code] 703 code = self.emit_comment_tokens() + \ 710 code[-1] += '\n' [all …]
|
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/ |
D | README.md | 38 * `-o OUTPUT` - path/name of the file to export the C# code into 49 ### Working with the generated code 51 The generated C# code contains a 56 Since there's some initialization code within the generated part, there are a couple small differen… 62 First of all, the constructor is defined in the generated code. Use `void Init()` partial method in… 77 // ... The rest of your code goes here 209 All of the peripheral's registers and memories are assumed to be described by the SystemRDL code.
|
D | LICENSE | 28 including but not limited to software source code, documentation 33 not limited to compiled object code, generated documentation, 57 communication on electronic mailing lists, source code control systems,
|
/Renode-v1.15.3-c57714d/tests/unit-tests/ |
D | array_memory.robot | 38 # Overlayed mapped memory area shouldn't be loaded with code 43 # Array memory overlay should be filled with code 59 …# ensure overlayed mapped memory was not loaded with code and therefore that program executes from…
|
D | memory-invalidation.robot | 33 # after running the code for the second time 77 # after running the code for the second time 123 # after running the code for the second time
|
D | riscv-amo-instructions.robot | 52 # Place machine code at PC. 94 # Place machine code at PC.
|
D | pmp.robot | 78 # Test code execution from the PMP covered region
|
D | virtual-time.robot | 30 # prepare a block of code
|
D | profiler-trace.robot | 28 # The code below configures MPU region 0 to <0x3000 0x64> to no priviliges, and then
|
/Renode-v1.15.3-c57714d/tools/execution_tracer/ |
D | pyproject.toml | 7 description = "Inspect binary Renode execution traces and generate code coverage reports"
|
/Renode-v1.15.3-c57714d/scripts/single-node/ |
D | i386_zephyr.resc | 11 # set the D flag for Executable code segment
|
D | acrn_x86_64_zephyr.resc | 15 # set the D flag for Executable code segment
|
D | up_squared_x86_64_zephyr.resc | 17 # set the D flag for Executable code segment
|
/Renode-v1.15.3-c57714d/.github/ |
D | PULL_REQUEST_TEMPLATE.md | 7 …r code to our upstream repositories it will be reviewed by the engineering team working on the pro…
|
/Renode-v1.15.3-c57714d/ |
D | CONTRIBUTING.md | 28 * preferably, the source code of your binary with build instructions - or at least a binary. 30 We know in some cases users are not able to share the full source code of the binary they are tryin… 44 * write and commit your code (see sections below) 50 …o some fixes or write a test for your change, but this is only meant to keep code quality high(er). 54 After you sign the CLA and our team performs a final review of your code, it will be merged to the … 70 It is vital to have all the code compiling without errors after each commit - this is useful for bi…
|
/Renode-v1.15.3-c57714d/tools/external_control_client/lib/ |
D | renode_api.c | 89 static renode_error_t *create_error_static(renode_error_code code, char *message) in create_error_static() argument 92 error->code = code; in create_error_static() 99 static renode_error_t *create_error_dynamic(renode_error_code code, char *message) in create_error_dynamic() argument 101 renode_error_t *error = create_error_static(code, message); in create_error_dynamic() 109 static renode_error_t *create_error(renode_error_code code, char *fmt, ...) in create_error() argument 117 renode_error_t *error = create_error_static(code, message); in create_error()
|
/Renode-v1.15.3-c57714d/platforms/cpus/ |
D | polarfire-soc.repl | 153 frequency: 156250 //this value is estimated from the comments in the code 158 frequency: 156250 //this value is estimated from the comments in the code 163 frequency: 156250 //this value is estimated from the comments in the code 168 frequency: 156250 //this value is estimated from the comments in the code 173 frequency: 156250 //this value is estimated from the comments in the code
|
D | msp430f2619.repl | 66 code: Memory.ArrayMemory @ sysbus 0x2100
|
/Renode-v1.15.3-c57714d/tools/external_control_client/include/ |
D | renode_api.h | 24 renode_error_code code; member
|
/Renode-v1.15.3-c57714d/tools/packaging/windows/ |
D | winpthreads-license | 27 * Use at own risk, there is no implied warranty to this code. 38 * * Redistributions of source code must retain the above copyright notice,
|
D | mingw-license | 7 notices are included when distributing the code in binary form. 23 1. Redistributions in source code must retain the accompanying copyright 80 This code is derived from software contributed to The NetBSD Foundation 86 1. Redistributions of source code must retain the above copyright
|
/Renode-v1.15.3-c57714d/tools/tlib_helper/ |
D | README.md | 3 …ntext of the whole Renode simulation while debugging the translated guest code execution in [tlib]…
|
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/ |
D | README.md | 169 You will need CMake to generate a makefile for the static library or to build the tests/code covera… 213 In "Where is the source code", put the socket-cpp path (e.g. C:/Users/Amine/Documents/Work/PROJECTS… 294 The code coverage build doesn't use the static library but compiles and uses directly the 314 The C++ code of the Socket C++ API classes is Cppcheck compliant. 317 …his includes updating documentation, cleaning and writing code and unit tests to increase code cov…
|
/Renode-v1.15.3-c57714d/tests/peripherals/CLIC/ |
D | CLIC-test-setup.resc | 5 # example_elf - path to the elf with test code
|
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/src/peakrdl_renode/ |
D | cs_exporter.py | 206 code = \ 212 return '\n'.join(line.rstrip() for line in code.splitlines()) + '\n'
|