add license header
This commit is contained in:
parent
6956ffa83e
commit
447886b037
2
LICENSE
2
LICENSE
|
@ -221,7 +221,7 @@ Also add information on how to contact you by electronic and paper mail.
|
|||
|
||||
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
|
||||
|
||||
ztl-mode Copyright (C) 2025 zongor
|
||||
ZRE Copyright (C) 2025 zongor
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
|
||||
|
||||
|
|
17
src/common.h
17
src/common.h
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef ZRE_COMMON_H
|
||||
#define ZRE_COMMON_H
|
||||
|
||||
|
|
17
src/debug.c
17
src/debug.c
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "debug.h"
|
||||
|
||||
int core_dump(Word *memory, uint32_t memory_size) {
|
||||
|
|
17
src/debug.h
17
src/debug.h
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef ZRE_DEBUG_H
|
||||
#define ZRE_DEBUG_H
|
||||
|
||||
|
|
17
src/main.c
17
src/main.c
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "debug.h"
|
||||
#include "vm.h"
|
||||
#ifdef __EMSCRIPTEN__
|
||||
|
|
17
src/vm.c
17
src/vm.c
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "vm.h"
|
||||
|
||||
#define MAX_LEN_INT32 11
|
||||
|
|
17
src/vm.h
17
src/vm.h
|
@ -1,3 +1,20 @@
|
|||
/*
|
||||
* ZRE - A lightweight, portable programming language for permacomputing.
|
||||
* Copyright (C) 2025 zongor
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef ZRE_VM_H
|
||||
#define ZRE_VM_H
|
||||
|
||||
|
|
Loading…
Reference in New Issue