From c2502333b2e56e520bb9ecc2f931a639eee415d7 Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 12 Feb 2020 01:46:45 +0200 Subject: [PATCH] add some missing license headers --- libpcsxcore/gpu.h | 16 ++++++++++++++++ libpcsxcore/gte_arm.h | 17 +++++++++++++++++ libpcsxcore/gte_divider.h | 17 +++++++++++++++++ libpcsxcore/gte_neon.h | 17 +++++++++++++++++ libpcsxcore/psxmem_map.h | 17 +++++++++++++++++ 5 files changed, 84 insertions(+) diff --git a/libpcsxcore/gpu.h b/libpcsxcore/gpu.h index 018d353a..63a55720 100644 --- a/libpcsxcore/gpu.h +++ b/libpcsxcore/gpu.h @@ -1,3 +1,19 @@ +/* Pcsx - Pc Psx Emulator + * Copyright (C) 1999-2016 Pcsx Team + * + * 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 2 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 . + */ /* * q: Why bother with GPU stuff in a plugin-based emu core? diff --git a/libpcsxcore/gte_arm.h b/libpcsxcore/gte_arm.h index 1a7353f8..6b240db7 100644 --- a/libpcsxcore/gte_arm.h +++ b/libpcsxcore/gte_arm.h @@ -1,3 +1,20 @@ +/* Pcsx - Pc Psx Emulator + * Copyright (C) 1999-2016 Pcsx Team + * + * 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 2 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 . + */ + void gteRTPS_nf_arm(void *cp2_regs, int opcode); void gteRTPT_nf_arm(void *cp2_regs, int opcode); void gteNCLIP_arm(void *cp2_regs, int opcode); diff --git a/libpcsxcore/gte_divider.h b/libpcsxcore/gte_divider.h index 4ee9cd03..0c988266 100644 --- a/libpcsxcore/gte_divider.h +++ b/libpcsxcore/gte_divider.h @@ -1 +1,18 @@ +/* Pcsx - Pc Psx Emulator + * Copyright (C) 1999-2016 Pcsx Team + * + * 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 2 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 . + */ + u32 DIVIDE(s16 n, u16 d); diff --git a/libpcsxcore/gte_neon.h b/libpcsxcore/gte_neon.h index 082be625..2fd9e4d7 100644 --- a/libpcsxcore/gte_neon.h +++ b/libpcsxcore/gte_neon.h @@ -1,3 +1,20 @@ +/* Pcsx - Pc Psx Emulator + * Copyright (C) 1999-2016 Pcsx Team + * + * 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 2 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 . + */ + void gteRTPS_neon(void *cp2_regs, int opcode); void gteRTPT_neon(void *cp2_regs, int opcode); diff --git a/libpcsxcore/psxmem_map.h b/libpcsxcore/psxmem_map.h index df5fa51a..9c15c035 100644 --- a/libpcsxcore/psxmem_map.h +++ b/libpcsxcore/psxmem_map.h @@ -1,3 +1,20 @@ +/* Pcsx - Pc Psx Emulator + * Copyright (C) 1999-2016 Pcsx Team + * + * 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 2 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 __PSXMEM_MAP_H__ #define __PSXMEM_MAP_H__ -- 2.39.2