Browse Source

Added requested Copyright notices

Jeremiah Orians 7 years ago
parent
commit
87477db7eb
84 changed files with 107 additions and 24 deletions
  1. 1 0
      .gitignore
  2. 1 0
      CHANGELOG.org
  3. 1 0
      Checksums.org
  4. 2 1
      High_level_prototypes/asm.c
  5. 1 0
      High_level_prototypes/defs
  6. 2 1
      High_level_prototypes/disasm.c
  7. 1 0
      High_level_prototypes/purpose.org
  8. 1 0
      ISA_HEX_Map.org
  9. 1 0
      Knight.py
  10. 1 0
      Library function prototypes/add_node.s
  11. 1 0
      Library function prototypes/clear_string.s
  12. 1 0
      Library function prototypes/copy_string.s
  13. 1 0
      Library function prototypes/malloc.s
  14. 1 0
      Library function prototypes/readline.s
  15. 1 0
      Library function prototypes/strcmp.s
  16. 1 0
      Linux Bootstrap/exec_enable.hex
  17. 1 0
      Linux Bootstrap/exec_enable.s
  18. 1 0
      Linux Bootstrap/hex0.hex
  19. 1 0
      Linux Bootstrap/hex0.s
  20. 1 0
      Linux Bootstrap/read.hex
  21. 1 0
      Linux Bootstrap/read.s
  22. 1 1
      Linux Bootstrap/test.sh
  23. 1 0
      Linux Bootstrap/xeh.hex0
  24. 1 0
      Linux Bootstrap/xeh.s
  25. 1 0
      README
  26. 1 0
      User_Interface.py
  27. 1 0
      Web Interface prototype Generator.py
  28. 1 0
      bootstrapping Steps.org
  29. 2 1
      dynamic_execution_trace.c
  30. 1 0
      makefile
  31. 1 0
      notes.org
  32. 2 1
      public/script.js
  33. 2 1
      public/style.css
  34. 1 0
      stage0/stage0_monitor.hex0
  35. 1 0
      stage0/stage0_monitor.s
  36. 1 0
      stage1/CAT.s
  37. 2 1
      stage1/High_level_prototypes/M0-macro.c
  38. 2 1
      stage1/High_level_prototypes/SET.c
  39. 2 1
      stage1/High_level_prototypes/dehex.c
  40. 2 1
      stage1/High_level_prototypes/more.c
  41. 2 1
      stage1/High_level_prototypes/stage1_assembler-1.c
  42. 2 1
      stage1/High_level_prototypes/stage1_assembler-2.c
  43. 1 0
      stage1/M0-macro.hex2
  44. 1 0
      stage1/M0-macro.s
  45. 1 0
      stage1/SET.hex0
  46. 1 0
      stage1/SET.hex2
  47. 1 0
      stage1/SET.s
  48. 1 0
      stage1/dehex.hex0
  49. 1 0
      stage1/dehex.s
  50. 1 0
      stage1/more.hex0
  51. 1 0
      stage1/more.s
  52. 1 0
      stage1/stage1_assembler-0.hex0
  53. 1 0
      stage1/stage1_assembler-0.s
  54. 1 0
      stage1/stage1_assembler-1.hex0
  55. 1 0
      stage1/stage1_assembler-1.hex1
  56. 1 0
      stage1/stage1_assembler-1.s
  57. 1 0
      stage1/stage1_assembler-2.hex0
  58. 1 0
      stage1/stage1_assembler-2.hex1
  59. 1 0
      stage1/stage1_assembler-2.hex2
  60. 1 0
      stage1/stage1_assembler-2.s
  61. 1 0
      stage2/High_level_prototypes/.gitignore
  62. 2 1
      stage2/High_level_prototypes/lisp.c
  63. 2 1
      stage2/High_level_prototypes/lisp.h
  64. 2 1
      stage2/High_level_prototypes/lisp_cell.c
  65. 2 1
      stage2/High_level_prototypes/lisp_eval.c
  66. 2 1
      stage2/High_level_prototypes/lisp_print.c
  67. 2 1
      stage2/High_level_prototypes/lisp_read.c
  68. 1 0
      stage2/High_level_prototypes/makefile
  69. 1 0
      stage2/forth.s
  70. 1 0
      stage2/lisp.s
  71. 2 1
      tty.c
  72. 2 1
      vm.c
  73. 2 1
      vm.h
  74. 2 1
      vm_decode.c
  75. 2 1
      vm_instructions.c
  76. 2 1
      wrapper.c
  77. 1 0
      x86/stage0/stage0_monitor.hex
  78. 1 0
      x86/stage0/stage0_monitor.s
  79. 1 0
      x86/stage1/stage1_disk_copier.s
  80. 1 0
      x86/stage1/stage1_hex_compiler.s
  81. 1 0
      x86/stage1/stage1_hex_editor.s
  82. 1 0
      x86/stage1/stage1_loader.hex
  83. 1 0
      x86/stage1/stage1_loader.s
  84. 1 0
      x86/stage1/stage1_raw_writer.s

+ 1 - 0
.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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 1 - 0
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 2 - 1
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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

+ 1 - 0
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