diff --git a/as/as.c b/as/as.c index c7aa24c..5218307 100644 --- a/as/as.c +++ b/as/as.c @@ -1,6 +1,6 @@ /* as.c * - * Copyright (C) 2012 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/asm_error.c b/as/asm_error.c index b3c0145..455e423 100644 --- a/as/asm_error.c +++ b/as/asm_error.c @@ -1,6 +1,6 @@ /* asm_error.c * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/asm_error.h b/as/asm_error.h index 10444d9..4aa3d7a 100644 --- a/as/asm_error.h +++ b/as/asm_error.h @@ -1,6 +1,6 @@ /* asm_error.h * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/ast.c b/as/ast.c index 73b0314..fa78e68 100644 --- a/as/ast.c +++ b/as/ast.c @@ -1,6 +1,6 @@ /* ast.c * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/ast.h b/as/ast.h index 6c23334..74c62e0 100644 --- a/as/ast.h +++ b/as/ast.h @@ -1,6 +1,6 @@ /* ast.h * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/codegen.c b/as/codegen.c index d08a6c4..334350d 100644 --- a/as/codegen.c +++ b/as/codegen.c @@ -1,6 +1,6 @@ /* codegen.c * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/codegen.h b/as/codegen.h index 8964321..ae08acf 100644 --- a/as/codegen.h +++ b/as/codegen.h @@ -1,6 +1,6 @@ /* codegen.h * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/lexer.c b/as/lexer.c index 3046537..33534d6 100644 --- a/as/lexer.c +++ b/as/lexer.c @@ -1,6 +1,6 @@ /* lexer.c * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/lexer.h b/as/lexer.h index cea04d7..f9594a7 100644 --- a/as/lexer.h +++ b/as/lexer.h @@ -1,6 +1,6 @@ /* lexer.h * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/parser.c b/as/parser.c index 3d0c822..15ad57e 100644 --- a/as/parser.c +++ b/as/parser.c @@ -1,6 +1,6 @@ /* parser.c * - * Copyright (C) 2012 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/parser.h b/as/parser.h index 29f2fe3..12c6417 100644 --- a/as/parser.h +++ b/as/parser.h @@ -1,6 +1,6 @@ /* parser.h * - * Copyright (C) 2012 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/symtab.c b/as/symtab.c index 9ac9867..0aa3ab4 100644 --- a/as/symtab.c +++ b/as/symtab.c @@ -1,6 +1,6 @@ /* symtab.c * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/as/symtab.h b/as/symtab.h index cd1cd68..ac3c6f5 100644 --- a/as/symtab.h +++ b/as/symtab.h @@ -1,6 +1,6 @@ /* symtab.h * - * Copyright (C) 2018 Henrik Hautakoski + * Copyright (C) 2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/cpu.c b/vm/cpu.c index c110d30..2d47c80 100644 --- a/vm/cpu.c +++ b/vm/cpu.c @@ -1,6 +1,6 @@ /* cpu.c * - * Copyright (C) 2012,2014-2015 Henrik Hautakoski + * Copyright (C) 2012,2014-2015,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/cpu.h b/vm/cpu.h index 2ec28ea..d5aa989 100644 --- a/vm/cpu.h +++ b/vm/cpu.h @@ -1,6 +1,6 @@ /* cpu.h * - * Copyright (C) 2012,2014-2015 Henrik Hautakoski + * Copyright (C) 2012,2014-2015,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/instr_decode.c b/vm/instr_decode.c index 44233a9..532d04e 100644 --- a/vm/instr_decode.c +++ b/vm/instr_decode.c @@ -1,6 +1,6 @@ /* instr_decode.c * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/instr_decode.h b/vm/instr_decode.h index 1e6d92e..eff474b 100644 --- a/vm/instr_decode.h +++ b/vm/instr_decode.h @@ -1,6 +1,6 @@ /* instr_decode.h * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/mm.c b/vm/mm.c index bb2d250..cef8735 100644 --- a/vm/mm.c +++ b/vm/mm.c @@ -1,6 +1,6 @@ /* mm.c * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/mm.h b/vm/mm.h index 7e58952..f7ed12f 100644 --- a/vm/mm.h +++ b/vm/mm.h @@ -1,6 +1,6 @@ /* mm.h * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/program.c b/vm/program.c index aa8e62a..72e5e11 100644 --- a/vm/program.c +++ b/vm/program.c @@ -1,6 +1,6 @@ /* program.c * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/program.h b/vm/program.h index 3533d2d..f790102 100644 --- a/vm/program.h +++ b/vm/program.h @@ -1,6 +1,6 @@ /* program.h * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/syscall.c b/vm/syscall.c index edbdeda..e5f3a00 100644 --- a/vm/syscall.c +++ b/vm/syscall.c @@ -1,6 +1,6 @@ /* syscall.c * -* Copyright (C) 2012,2014-2015 Henrik Hautakoski +* Copyright (C) 2012,2014-2015,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/syscall.h b/vm/syscall.h index 0c64bd6..7c09994 100644 --- a/vm/syscall.h +++ b/vm/syscall.h @@ -1,6 +1,6 @@ /* syscall.h * -* Copyright (C) 2012,2014-2015 Henrik Hautakoski +* Copyright (C) 2012,2014-2015,2018-2019 Henrik Hautakoski * * 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 diff --git a/vm/vm.c b/vm/vm.c index 752de1c..fd8a754 100644 --- a/vm/vm.c +++ b/vm/vm.c @@ -1,6 +1,6 @@ /* vm.c * - * Copyright (C) 2012,2014 Henrik Hautakoski + * Copyright (C) 2012,2014,2018-2019 Henrik Hautakoski * * 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