From 87477db7eb8d82a48d24657299efec27f9e20145 Mon Sep 17 00:00:00 2001 From: Jeremiah Orians Date: Sat, 1 Apr 2017 17:26:44 -0400 Subject: [PATCH] Added requested Copyright notices --- .gitignore | 1 + CHANGELOG.org | 1 + Checksums.org | 1 + High_level_prototypes/asm.c | 3 ++- High_level_prototypes/defs | 1 + High_level_prototypes/disasm.c | 3 ++- High_level_prototypes/purpose.org | 1 + ISA_HEX_Map.org | 1 + Knight.py | 1 + Library function prototypes/add_node.s | 1 + Library function prototypes/clear_string.s | 1 + Library function prototypes/copy_string.s | 1 + Library function prototypes/malloc.s | 1 + Library function prototypes/readline.s | 1 + Library function prototypes/strcmp.s | 1 + Linux Bootstrap/exec_enable.hex | 1 + Linux Bootstrap/exec_enable.s | 1 + Linux Bootstrap/hex0.hex | 1 + Linux Bootstrap/hex0.s | 1 + Linux Bootstrap/read.hex | 1 + Linux Bootstrap/read.s | 1 + Linux Bootstrap/test.sh | 2 +- Linux Bootstrap/xeh.hex0 | 1 + Linux Bootstrap/xeh.s | 1 + README | 1 + User_Interface.py | 1 + Web Interface prototype Generator.py | 1 + bootstrapping Steps.org | 1 + dynamic_execution_trace.c | 3 ++- makefile | 1 + notes.org | 1 + public/script.js | 3 ++- public/style.css | 3 ++- stage0/stage0_monitor.hex0 | 1 + stage0/stage0_monitor.s | 1 + stage1/CAT.s | 1 + stage1/High_level_prototypes/M0-macro.c | 3 ++- stage1/High_level_prototypes/SET.c | 3 ++- stage1/High_level_prototypes/dehex.c | 3 ++- stage1/High_level_prototypes/more.c | 3 ++- stage1/High_level_prototypes/stage1_assembler-1.c | 3 ++- stage1/High_level_prototypes/stage1_assembler-2.c | 3 ++- stage1/M0-macro.hex2 | 1 + stage1/M0-macro.s | 1 + stage1/SET.hex0 | 1 + stage1/SET.hex2 | 1 + stage1/SET.s | 1 + stage1/dehex.hex0 | 1 + stage1/dehex.s | 1 + stage1/more.hex0 | 1 + stage1/more.s | 1 + stage1/stage1_assembler-0.hex0 | 1 + stage1/stage1_assembler-0.s | 1 + stage1/stage1_assembler-1.hex0 | 1 + stage1/stage1_assembler-1.hex1 | 1 + stage1/stage1_assembler-1.s | 1 + stage1/stage1_assembler-2.hex0 | 1 + stage1/stage1_assembler-2.hex1 | 1 + stage1/stage1_assembler-2.hex2 | 1 + stage1/stage1_assembler-2.s | 1 + stage2/High_level_prototypes/.gitignore | 1 + stage2/High_level_prototypes/lisp.c | 3 ++- stage2/High_level_prototypes/lisp.h | 3 ++- stage2/High_level_prototypes/lisp_cell.c | 3 ++- stage2/High_level_prototypes/lisp_eval.c | 3 ++- stage2/High_level_prototypes/lisp_print.c | 3 ++- stage2/High_level_prototypes/lisp_read.c | 3 ++- stage2/High_level_prototypes/makefile | 1 + stage2/forth.s | 1 + stage2/lisp.s | 1 + tty.c | 3 ++- vm.c | 3 ++- vm.h | 3 ++- vm_decode.c | 3 ++- vm_instructions.c | 3 ++- wrapper.c | 3 ++- x86/stage0/stage0_monitor.hex | 1 + x86/stage0/stage0_monitor.s | 1 + x86/stage1/stage1_disk_copier.s | 1 + x86/stage1/stage1_hex_compiler.s | 1 + x86/stage1/stage1_hex_editor.s | 1 + x86/stage1/stage1_loader.hex | 1 + x86/stage1/stage1_loader.s | 1 + x86/stage1/stage1_raw_writer.s | 1 + 84 files changed, 107 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index 1f84eab..3a8c652 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/CHANGELOG.org b/CHANGELOG.org index 8366e8f..d94789c 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Checksums.org b/Checksums.org index d44ad49..46d5c5a 100644 --- a/Checksums.org +++ b/Checksums.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/High_level_prototypes/asm.c b/High_level_prototypes/asm.c index c053d2d..8856911 100644 --- a/High_level_prototypes/asm.c +++ b/High_level_prototypes/asm.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/High_level_prototypes/defs b/High_level_prototypes/defs index 301df87..a7799ee 100644 --- a/High_level_prototypes/defs +++ b/High_level_prototypes/defs @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/High_level_prototypes/disasm.c b/High_level_prototypes/disasm.c index 8380127..40339c4 100644 --- a/High_level_prototypes/disasm.c +++ b/High_level_prototypes/disasm.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/High_level_prototypes/purpose.org b/High_level_prototypes/purpose.org index 8f1d19c..9578308 100644 --- a/High_level_prototypes/purpose.org +++ b/High_level_prototypes/purpose.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/ISA_HEX_Map.org b/ISA_HEX_Map.org index 8ca2d6d..f10b169 100644 --- a/ISA_HEX_Map.org +++ b/ISA_HEX_Map.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Knight.py b/Knight.py index f727526..5d93dbb 100755 --- a/Knight.py +++ b/Knight.py @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Library function prototypes/add_node.s b/Library function prototypes/add_node.s index 094c9c8..6ee6503 100644 --- a/Library function prototypes/add_node.s +++ b/Library function prototypes/add_node.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Library function prototypes/clear_string.s b/Library function prototypes/clear_string.s index 5df1c6b..36b1077 100644 --- a/Library function prototypes/clear_string.s +++ b/Library function prototypes/clear_string.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Library function prototypes/copy_string.s b/Library function prototypes/copy_string.s index 6a907ac..1e37a85 100644 --- a/Library function prototypes/copy_string.s +++ b/Library function prototypes/copy_string.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Library function prototypes/malloc.s b/Library function prototypes/malloc.s index e665504..116710c 100644 --- a/Library function prototypes/malloc.s +++ b/Library function prototypes/malloc.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Library function prototypes/readline.s b/Library function prototypes/readline.s index 998c775..fbc1b9b 100644 --- a/Library function prototypes/readline.s +++ b/Library function prototypes/readline.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Library function prototypes/strcmp.s b/Library function prototypes/strcmp.s index 0208a74..103f7c8 100644 --- a/Library function prototypes/strcmp.s +++ b/Library function prototypes/strcmp.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/Linux Bootstrap/exec_enable.hex b/Linux Bootstrap/exec_enable.hex index e24dff9..447c0e6 100644 --- a/Linux Bootstrap/exec_enable.hex +++ b/Linux Bootstrap/exec_enable.hex @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/exec_enable.s b/Linux Bootstrap/exec_enable.s index ed44473..a532d25 100644 --- a/Linux Bootstrap/exec_enable.s +++ b/Linux Bootstrap/exec_enable.s @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/hex0.hex b/Linux Bootstrap/hex0.hex index 6253baf..bdd3d2e 100644 --- a/Linux Bootstrap/hex0.hex +++ b/Linux Bootstrap/hex0.hex @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/hex0.s b/Linux Bootstrap/hex0.s index d172e47..71476c7 100644 --- a/Linux Bootstrap/hex0.s +++ b/Linux Bootstrap/hex0.s @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/read.hex b/Linux Bootstrap/read.hex index ee57305..4b1e835 100644 --- a/Linux Bootstrap/read.hex +++ b/Linux Bootstrap/read.hex @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/read.s b/Linux Bootstrap/read.s index c29e000..bede346 100644 --- a/Linux Bootstrap/read.s +++ b/Linux Bootstrap/read.s @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/test.sh b/Linux Bootstrap/test.sh index 07e09e0..2e7b25b 100755 --- a/Linux Bootstrap/test.sh +++ b/Linux Bootstrap/test.sh @@ -1,5 +1,5 @@ #!/bin/bash - +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/xeh.hex0 b/Linux Bootstrap/xeh.hex0 index 2043c5c..de977e2 100644 --- a/Linux Bootstrap/xeh.hex0 +++ b/Linux Bootstrap/xeh.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Linux Bootstrap/xeh.s b/Linux Bootstrap/xeh.s index dd827e6..aab6d7d 100644 --- a/Linux Bootstrap/xeh.s +++ b/Linux Bootstrap/xeh.s @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/README b/README index 4ce6797..71d927c 100644 --- a/README +++ b/README @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/User_Interface.py b/User_Interface.py index 22e50f1..7936095 100644 --- a/User_Interface.py +++ b/User_Interface.py @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/Web Interface prototype Generator.py b/Web Interface prototype Generator.py index 35bff5d..1a62302 100644 --- a/Web Interface prototype Generator.py +++ b/Web Interface prototype Generator.py @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/bootstrapping Steps.org b/bootstrapping Steps.org index 185e950..fa82ea5 100644 --- a/bootstrapping Steps.org +++ b/bootstrapping Steps.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/dynamic_execution_trace.c b/dynamic_execution_trace.c index c33309f..e297cd1 100644 --- a/dynamic_execution_trace.c +++ b/dynamic_execution_trace.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/makefile b/makefile index c1ecbb0..fe0e9af 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/notes.org b/notes.org index 60c37a1..24b3eac 100644 --- a/notes.org +++ b/notes.org @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/public/script.js b/public/script.js index d549649..c61033f 100644 --- a/public/script.js +++ b/public/script.js @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/public/style.css b/public/style.css index f30d784..a2816ce 100644 --- a/public/style.css +++ b/public/style.css @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage0/stage0_monitor.hex0 b/stage0/stage0_monitor.hex0 index 91b7eba..ac76897 100644 --- a/stage0/stage0_monitor.hex0 +++ b/stage0/stage0_monitor.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage0/stage0_monitor.s b/stage0/stage0_monitor.s index baaebbc..7367703 100644 --- a/stage0/stage0_monitor.s +++ b/stage0/stage0_monitor.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/CAT.s b/stage1/CAT.s index 83f45b5..d10c9c1 100644 --- a/stage1/CAT.s +++ b/stage1/CAT.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/High_level_prototypes/M0-macro.c b/stage1/High_level_prototypes/M0-macro.c index 0819b91..9d3ee57 100644 --- a/stage1/High_level_prototypes/M0-macro.c +++ b/stage1/High_level_prototypes/M0-macro.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/High_level_prototypes/SET.c b/stage1/High_level_prototypes/SET.c index 465522a..5a55915 100644 --- a/stage1/High_level_prototypes/SET.c +++ b/stage1/High_level_prototypes/SET.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/High_level_prototypes/dehex.c b/stage1/High_level_prototypes/dehex.c index 0e02b92..6ca93cc 100644 --- a/stage1/High_level_prototypes/dehex.c +++ b/stage1/High_level_prototypes/dehex.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/High_level_prototypes/more.c b/stage1/High_level_prototypes/more.c index e0bf1c1..fddda38 100644 --- a/stage1/High_level_prototypes/more.c +++ b/stage1/High_level_prototypes/more.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/High_level_prototypes/stage1_assembler-1.c b/stage1/High_level_prototypes/stage1_assembler-1.c index 7373f48..a842d47 100644 --- a/stage1/High_level_prototypes/stage1_assembler-1.c +++ b/stage1/High_level_prototypes/stage1_assembler-1.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/High_level_prototypes/stage1_assembler-2.c b/stage1/High_level_prototypes/stage1_assembler-2.c index 2798afe..0e4b6f0 100644 --- a/stage1/High_level_prototypes/stage1_assembler-2.c +++ b/stage1/High_level_prototypes/stage1_assembler-2.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage1/M0-macro.hex2 b/stage1/M0-macro.hex2 index ba75091..4d48e95 100644 --- a/stage1/M0-macro.hex2 +++ b/stage1/M0-macro.hex2 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/M0-macro.s b/stage1/M0-macro.s index c669fef..d788667 100644 --- a/stage1/M0-macro.s +++ b/stage1/M0-macro.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/SET.hex0 b/stage1/SET.hex0 index d0cd59f..c5b512b 100644 --- a/stage1/SET.hex0 +++ b/stage1/SET.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/SET.hex2 b/stage1/SET.hex2 index fa77858..8bdc80c 100644 --- a/stage1/SET.hex2 +++ b/stage1/SET.hex2 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/SET.s b/stage1/SET.s index 2f181cd..a86facb 100644 --- a/stage1/SET.s +++ b/stage1/SET.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/dehex.hex0 b/stage1/dehex.hex0 index f77f8b4..aba4e38 100644 --- a/stage1/dehex.hex0 +++ b/stage1/dehex.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/dehex.s b/stage1/dehex.s index 7f257da..d8de594 100644 --- a/stage1/dehex.s +++ b/stage1/dehex.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/more.hex0 b/stage1/more.hex0 index 909d522..45171ee 100644 --- a/stage1/more.hex0 +++ b/stage1/more.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/more.s b/stage1/more.s index b8b1b80..54064ac 100644 --- a/stage1/more.s +++ b/stage1/more.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/stage1_assembler-0.hex0 b/stage1/stage1_assembler-0.hex0 index 3b6d776..01030f4 100644 --- a/stage1/stage1_assembler-0.hex0 +++ b/stage1/stage1_assembler-0.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-0.s b/stage1/stage1_assembler-0.s index c988453..e5381c0 100644 --- a/stage1/stage1_assembler-0.s +++ b/stage1/stage1_assembler-0.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/stage1_assembler-1.hex0 b/stage1/stage1_assembler-1.hex0 index f5eaf12..e2f2bc5 100644 --- a/stage1/stage1_assembler-1.hex0 +++ b/stage1/stage1_assembler-1.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-1.hex1 b/stage1/stage1_assembler-1.hex1 index a3c05e6..65b542d 100644 --- a/stage1/stage1_assembler-1.hex1 +++ b/stage1/stage1_assembler-1.hex1 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-1.s b/stage1/stage1_assembler-1.s index af73b87..199b2dc 100644 --- a/stage1/stage1_assembler-1.s +++ b/stage1/stage1_assembler-1.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage1/stage1_assembler-2.hex0 b/stage1/stage1_assembler-2.hex0 index 4a0f850..3edc548 100644 --- a/stage1/stage1_assembler-2.hex0 +++ b/stage1/stage1_assembler-2.hex0 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-2.hex1 b/stage1/stage1_assembler-2.hex1 index e13d35e..4286561 100644 --- a/stage1/stage1_assembler-2.hex1 +++ b/stage1/stage1_assembler-2.hex1 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-2.hex2 b/stage1/stage1_assembler-2.hex2 index c525d1e..183dee9 100644 --- a/stage1/stage1_assembler-2.hex2 +++ b/stage1/stage1_assembler-2.hex2 @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage1/stage1_assembler-2.s b/stage1/stage1_assembler-2.s index bcbd311..649e885 100644 --- a/stage1/stage1_assembler-2.s +++ b/stage1/stage1_assembler-2.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage2/High_level_prototypes/.gitignore b/stage2/High_level_prototypes/.gitignore index 56361de..c689f6e 100644 --- a/stage2/High_level_prototypes/.gitignore +++ b/stage2/High_level_prototypes/.gitignore @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage2/High_level_prototypes/lisp.c b/stage2/High_level_prototypes/lisp.c index d3bfc2f..10ac7ad 100644 --- a/stage2/High_level_prototypes/lisp.c +++ b/stage2/High_level_prototypes/lisp.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/lisp.h b/stage2/High_level_prototypes/lisp.h index 1873d22..1dc5d59 100644 --- a/stage2/High_level_prototypes/lisp.h +++ b/stage2/High_level_prototypes/lisp.h @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/lisp_cell.c b/stage2/High_level_prototypes/lisp_cell.c index c649e50..ed22765 100644 --- a/stage2/High_level_prototypes/lisp_cell.c +++ b/stage2/High_level_prototypes/lisp_cell.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/lisp_eval.c b/stage2/High_level_prototypes/lisp_eval.c index 242db91..05eb781 100644 --- a/stage2/High_level_prototypes/lisp_eval.c +++ b/stage2/High_level_prototypes/lisp_eval.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/lisp_print.c b/stage2/High_level_prototypes/lisp_print.c index 506454d..b1d50af 100644 --- a/stage2/High_level_prototypes/lisp_print.c +++ b/stage2/High_level_prototypes/lisp_print.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/lisp_read.c b/stage2/High_level_prototypes/lisp_read.c index 6307555..109862d 100644 --- a/stage2/High_level_prototypes/lisp_read.c +++ b/stage2/High_level_prototypes/lisp_read.c @@ -1,4 +1,5 @@ - /* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stage2/High_level_prototypes/makefile b/stage2/High_level_prototypes/makefile index 1b31630..2270189 100644 --- a/stage2/High_level_prototypes/makefile +++ b/stage2/High_level_prototypes/makefile @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/stage2/forth.s b/stage2/forth.s index d46bed3..28821f6 100644 --- a/stage2/forth.s +++ b/stage2/forth.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/stage2/lisp.s b/stage2/lisp.s index 25f2188..63c7f1e 100644 --- a/stage2/lisp.s +++ b/stage2/lisp.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/tty.c b/tty.c index e005ead..2a510b9 100644 --- a/tty.c +++ b/tty.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/vm.c b/vm.c index b6db685..8b5dc47 100644 --- a/vm.c +++ b/vm.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/vm.h b/vm.h index 19d0a2e..b572320 100644 --- a/vm.h +++ b/vm.h @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/vm_decode.c b/vm_decode.c index 1b9445c..74c8c31 100644 --- a/vm_decode.c +++ b/vm_decode.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/vm_instructions.c b/vm_instructions.c index 357bad7..22f1d7e 100644 --- a/vm_instructions.c +++ b/vm_instructions.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/wrapper.c b/wrapper.c index aac8830..c50689a 100644 --- a/wrapper.c +++ b/wrapper.c @@ -1,4 +1,5 @@ -/* This file is part of stage0. +/* Copyright (C) 2016 Jeremiah Orians + * This file is part of stage0. * * stage0 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/x86/stage0/stage0_monitor.hex b/x86/stage0/stage0_monitor.hex index b5c6ff0..106025f 100644 --- a/x86/stage0/stage0_monitor.hex +++ b/x86/stage0/stage0_monitor.hex @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/x86/stage0/stage0_monitor.s b/x86/stage0/stage0_monitor.s index 91f2620..b905cec 100644 --- a/x86/stage0/stage0_monitor.s +++ b/x86/stage0/stage0_monitor.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/x86/stage1/stage1_disk_copier.s b/x86/stage1/stage1_disk_copier.s index 2e5829c..7e9eee9 100644 --- a/x86/stage1/stage1_disk_copier.s +++ b/x86/stage1/stage1_disk_copier.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/x86/stage1/stage1_hex_compiler.s b/x86/stage1/stage1_hex_compiler.s index 685f0a4..dcc0d3a 100644 --- a/x86/stage1/stage1_hex_compiler.s +++ b/x86/stage1/stage1_hex_compiler.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/x86/stage1/stage1_hex_editor.s b/x86/stage1/stage1_hex_editor.s index 8c1b796..088699a 100644 --- a/x86/stage1/stage1_hex_editor.s +++ b/x86/stage1/stage1_hex_editor.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/x86/stage1/stage1_loader.hex b/x86/stage1/stage1_loader.hex index 2ae2d74..38e6aa2 100644 --- a/x86/stage1/stage1_loader.hex +++ b/x86/stage1/stage1_loader.hex @@ -1,3 +1,4 @@ +## Copyright (C) 2016 Jeremiah Orians ## This file is part of stage0. ## ## stage0 is free software: you an redistribute it and/or modify diff --git a/x86/stage1/stage1_loader.s b/x86/stage1/stage1_loader.s index 1a86375..611296f 100644 --- a/x86/stage1/stage1_loader.s +++ b/x86/stage1/stage1_loader.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify diff --git a/x86/stage1/stage1_raw_writer.s b/x86/stage1/stage1_raw_writer.s index 3e700d8..0f7bec7 100644 --- a/x86/stage1/stage1_raw_writer.s +++ b/x86/stage1/stage1_raw_writer.s @@ -1,3 +1,4 @@ +; Copyright (C) 2016 Jeremiah Orians ; This file is part of stage0. ; ; stage0 is free software: you can redistribute it and/or modify