Arrange licensing info in repo according to REUSE 3.2 convention.
Chris Pressey
8 months ago
0 | This is free and unencumbered software released into the public domain. | |
1 | ||
2 | Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. | |
3 | ||
4 | In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and | |
5 | successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. | |
6 | ||
7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
8 | ||
9 | For more information, please refer to <http://unlicense.org/> |
0 | 0 | hatoucan |
1 | 1 | ======== |
2 | ||
3 | <!-- | |
4 | SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
5 | For more information, please refer to <https://unlicense.org/> | |
6 | SPDX-License-Identifier: Unlicense | |
7 | --> | |
2 | 8 | |
3 | 9 | _Entry_ [@ catseye.tc](https://catseye.tc/node/hatoucan) |
4 | 10 | | _See also:_ [yucca](https://codeberg.org/catseye/yucca#yucca) |
0 | version = 1 | |
1 | ||
2 | [[annotations]] | |
3 | path = ["REUSE.toml", ".gitignore", "tests/appliances/**.**", "eg/**.**"] | |
4 | precedence = "aggregate" | |
5 | SPDX-FileCopyrightText = "Chris Pressey, the original author of this work, has dedicated it to the public domain." | |
6 | SPDX-License-Identifier = "Unlicense" |
0 | This is free and unencumbered software released into the public domain. | |
1 | ||
2 | Anyone is free to copy, modify, publish, use, compile, sell, or | |
3 | distribute this software, either in source code form or as a compiled | |
4 | binary, for any purpose, commercial or non-commercial, and by any | |
5 | means. | |
6 | ||
7 | In jurisdictions that recognize copyright laws, the author or authors | |
8 | of this software dedicate any and all copyright interest in the | |
9 | software to the public domain. We make this dedication for the benefit | |
10 | of the public at large and to the detriment of our heirs and | |
11 | successors. We intend this dedication to be an overt act of | |
12 | relinquishment in perpetuity of all present and future rights to this | |
13 | software under copyright law. | |
14 | ||
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
18 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |
19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |
20 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
21 | OTHER DEALINGS IN THE SOFTWARE. | |
22 | ||
23 | For more information, please refer to <http://unlicense.org/> |
0 | 0 | #!/bin/sh |
1 | ||
2 | # SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
3 | # For more information, please refer to <https://unlicense.org/> | |
4 | # SPDX-License-Identifier: Unlicense | |
1 | 5 | |
2 | 6 | # Usage: confirm-tokenization.sh <load-addr> <basic-source> |
3 | 7 |
0 | 0 | #!/usr/bin/env python3 |
1 | 1 | |
2 | import struct | |
3 | import sys | |
4 | ||
5 | 2 | # Inefficient-but-public-domain Commodore BASIC 2.0 tokenizer. |
6 | # This work is in the public domain, covered under the UNLICENSE; | |
7 | # see the file UNLICENSE in the root directory of this distribution, | |
8 | # or http://www.unlicense.org/ for full details. | |
3 | ||
4 | # SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
5 | # For more information, please refer to <https://unlicense.org/> | |
6 | # SPDX-License-Identifier: Unlicense | |
9 | 7 | |
10 | 8 | # references: |
11 | 9 | # http://justsolve.archiveteam.org/wiki/Commodore_BASIC_tokenized_file |
12 | 10 | # http://www.c64-wiki.com/index.php/BASIC_token |
11 | ||
12 | import struct | |
13 | import sys | |
13 | 14 | |
14 | 15 | DEBUG = False |
15 | 16 |
0 | 0 | #!/bin/sh |
1 | ||
2 | # SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
3 | # For more information, please refer to <https://unlicense.org/> | |
4 | # SPDX-License-Identifier: Unlicense | |
1 | 5 | |
2 | 6 | APPLIANCES="" |
3 | 7 | if command -v python2 > /dev/null 2>&1; then |
0 | 0 | Test Suite for Commodore BASIC 2.0 Tokenization |
1 | 1 | =============================================== |
2 | ||
3 | <!-- | |
4 | SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
5 | For more information, please refer to <https://unlicense.org/> | |
6 | SPDX-License-Identifier: Unlicense | |
7 | --> | |
2 | 8 | |
3 | 9 | This test suite is written in the format of Falderal 0.10. |
4 | 10 |
0 | 0 | #!/usr/bin/env python2 |
1 | ||
2 | # SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
3 | # For more information, please refer to <https://unlicense.org/> | |
4 | # SPDX-License-Identifier: Unlicense | |
1 | 5 | |
2 | 6 | # converts raw bytes on input to hex couples on input. |
3 | 7 |
0 | 0 | #!/usr/bin/env python3 |
1 | ||
2 | # SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain. | |
3 | # For more information, please refer to <https://unlicense.org/> | |
4 | # SPDX-License-Identifier: Unlicense | |
1 | 5 | |
2 | 6 | # converts raw bytes on input to hex couples on input. |
3 | 7 |