From: Amelia Coutard Date: Sun, 5 Mar 2023 18:57:14 +0000 (+0100) Subject: Used different comment symbol for .S files copyright & licence notices X-Git-Url: https://git.ameliathe1st.gay/?a=commitdiff_plain;h=c8239fc66b8c72a0631ec05d6c553119f9ff9567;p=voyage-au-centre-des-fichiers.git Used different comment symbol for .S files copyright & licence notices --- diff --git a/kernel/src/boot.S b/kernel/src/boot.S index 75cc0a0..22d5857 100644 --- a/kernel/src/boot.S +++ b/kernel/src/boot.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . #include "lib/multiboot2.hpp" diff --git a/kernel/src/interrupts.S b/kernel/src/interrupts.S index 35a2381..0974203 100644 --- a/kernel/src/interrupts.S +++ b/kernel/src/interrupts.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . #define PUSH_REGS \ pushq %rax; \ diff --git a/kernel/src/lib/crti.S b/kernel/src/lib/crti.S index f56934d..0038611 100644 --- a/kernel/src/lib/crti.S +++ b/kernel/src/lib/crti.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . .section .init .global _init diff --git a/kernel/src/lib/crtn.S b/kernel/src/lib/crtn.S index 4b3b1b9..36327e6 100644 --- a/kernel/src/lib/crtn.S +++ b/kernel/src/lib/crtn.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . .section .init /* gcc will nicely put the contents of crtend.o's .init section here. */ diff --git a/kernel/src/ring3.S b/kernel/src/ring3.S index b0e4274..527fe1b 100644 --- a/kernel/src/ring3.S +++ b/kernel/src/ring3.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . .section .text diff --git a/test_module/src/test.S b/test_module/src/test.S index 1815f3d..65e8156 100644 --- a/test_module/src/test.S +++ b/test_module/src/test.S @@ -1,15 +1,15 @@ -// Copyright 2023 Amélia COUTARD. -// -// This file from the program isos 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 . +# Copyright 2023 Amélia COUTARD. +# +# This file from the program isos 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 . .section .text