Slight fixes; add GNU preamble.

This commit is contained in:
NewRisingSun
2025-09-17 19:20:54 +02:00
parent 5d88968cf9
commit fc9d69430d
3 changed files with 42 additions and 1 deletions

View File

@@ -91,5 +91,6 @@ void Mapper518_Init (CartInfo *info) {
info->Reset = reset; info->Reset = reset;
GameStateRestore = restore; GameStateRestore = restore;
PPU_hook = trapPPUAddressChange; PPU_hook = trapPPUAddressChange;
AddExState(reg, 2, 0, "REGS");
AddExState(&chr, 1, 0, "CHRB"); AddExState(&chr, 1, 0, "CHRB");
} }

View File

@@ -1,3 +1,23 @@
/* FCE Ultra - NES/Famicom Emulator
*
* Copyright notice for this file:
* Copyright (C) 2025 NewRisingSun
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "mapinc.h" #include "mapinc.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@@ -37,7 +57,7 @@ void FIFO_init (FIFO *fifo, size_t newCapacity) {
void FIFO_close (FIFO *fifo) { void FIFO_close (FIFO *fifo) {
if (fifo->data) { if (fifo->data) {
free(fifo->data); FCEU_gfree(fifo->data);
fifo->data = NULL; fifo->data = NULL;
} }
} }

View File

@@ -1,3 +1,23 @@
/* FCE Ultra - NES/Famicom Emulator
*
* Copyright notice for this file:
* Copyright (C) 2025 NewRisingSun
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "mapinc.h" #include "mapinc.h"
#include "msm6585.h" #include "msm6585.h"