Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
ISC License

Scope: This license covers the software and supporting material in this
repository — including the tooling under tools/, the example material
under examples/ (with its build sources), and the repository's build and
documentation files (e.g. Makefile, README.adoc). It does NOT cover the
CTXP specification under spec/, which is licensed separately under the
Creative Commons Attribution 4.0 International License (CC BY 4.0). See
spec/tn-ctxp-format.adoc and https://creativecommons.org/licenses/by/4.0/.

Copyright (c) 2026 Accemic Technologies GmbH

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.PHONY: lint
.PHONY: examples-build examples-build-docker examples-clean
.PHONY: examples-verify
Expand Down
8 changes: 6 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ If you want to evaluate or integrate CTXP tooling, please contact us:

== License / attribution / acknowledgement

The CTXP technical note states it is licensed under
Creative Commons Attribution 4.0 International (CC BY 4.0). See the spec for details.
This repository uses two licenses:

* *Specification* (`spec/`): the CTXP technical note is licensed under the
Creative Commons Attribution 4.0 International License (CC BY 4.0). See the spec for details.
* *Tooling and examples* (`tools/`, `examples/`): licensed under the ISC License.
See the `LICENSE` file at the repository root.

The CTXP format was developed as part of the TRISTAN project, a European Union research initiative involving 46 partners to advance the RISC-V ecosystem. See https://tristan-project.eu/ for more information.
3 changes: 3 additions & 0 deletions examples/_sources/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

FROM debian:bookworm-slim

RUN apt-get update \
Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

RISCV_GCC ?= riscv64-unknown-elf-gcc
RISCV_OBJDUMP ?= riscv64-unknown-elf-objdump

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/basic.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/context.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/daq.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/dualcore.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/interrupt_rfi.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/memory.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
3 changes: 3 additions & 0 deletions examples/_sources/overflow.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

.section .text
.globl _start

Expand Down
2 changes: 2 additions & 0 deletions tools/ctxp_lint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

"""CTXP (.ctxp.txt) linter

Expand Down
2 changes: 2 additions & 0 deletions tools/verify_examples.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: ISC
# SPDX-FileCopyrightText: 2026 Accemic Technologies GmbH

"""Verify that example CTXP traces look plausible with their corresponding disassembly.

Expand Down
Loading