From: John Tsiombikas Date: Sun, 29 Apr 2018 13:24:46 +0000 (+0300) Subject: comments X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=commitdiff_plain;h=331b4c6f7dace93a6207a1f294f13bcc52a96cf9 comments --- diff --git a/src/boot/boot2.s b/src/boot/boot2.s index 59096ac..572a4f0 100644 --- a/src/boot/boot2.s +++ b/src/boot/boot2.s @@ -15,6 +15,8 @@ # along with this program. If not, see . # this is the second-stage boot loader +# plus some other code that needs to run below 1mb (int86 implementation). + .code16 .section .boot2,"ax" diff --git a/src/int86.h b/src/int86.h index fdae525..d6fcb7d 100644 --- a/src/int86.h +++ b/src/int86.h @@ -1,3 +1,20 @@ +/* +pcboot - bootable PC demo/game kernel +Copyright (C) 2018 John Tsiombikas + +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 . +*/ #ifndef INT86_H_ #define INT86_H_ diff --git a/src/mem.h b/src/mem.h index 219bf5f..f571d17 100644 --- a/src/mem.h +++ b/src/mem.h @@ -1,3 +1,20 @@ +/* +pcboot - bootable PC demo/game kernel +Copyright (C) 2018 John Tsiombikas + +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 . +*/ #ifndef MEM_H_ #define MEM_H_ diff --git a/src/video.h b/src/video.h index 645675a..20f3ea8 100644 --- a/src/video.h +++ b/src/video.h @@ -1,3 +1,20 @@ +/* +pcboot - bootable PC demo/game kernel +Copyright (C) 2018 John Tsiombikas + +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 . +*/ #ifndef VIDEO_H_ #define VIDEO_H_