Uniformise copyright headers.

This commit is contained in:
Godzil 2021-11-23 14:44:03 +00:00
parent 6f539fff1e
commit 1df15b0192
25 changed files with 82 additions and 55 deletions

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* dumpinfo.c: Tool to dump the metadata info about a cart rom image.
*
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>

5
main.c
View File

@ -1,10 +1,11 @@
/*
/******************************************************************************
* NewOswan
* main.c: Entry point
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
//
// 13.04.2002: Fixed a small bug causing crashes

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* audio.c:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
//
// Sound information thanks to toshi (wscamp wonderswan emulator)

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* audio.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* emulate.c:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* emulate.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,3 +1,11 @@
/*******************************************************************************
* NewOswan
* gpu.c:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
// GPU
////////////////////////////////////////////////////////////////////////////////

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* gpu.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
#ifndef __GPU_H__
#define __GPU_H__

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* io.c: I/O ports implementaton
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* io.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,10 @@
/*
* C Fancy Logger
* log.c:
/*******************************************************************************
* NewOswan
* log.c: C Fancy Logger
* Copyright (c) 2009-2021 986-Studio. All rights reserved.
*
* Created by Manoël Trapier on 20/01/2009.
*/
******************************************************************************/
#define __LOG_C_INTERNAL_

View File

@ -1,10 +1,10 @@
/*
* C Fancy Logger
* log.h:
/*******************************************************************************
* NewOswan
* log.h: C Fancy Logger
* Copyright (c) 2009-2021 986-Studio. All rights reserved.
*
* Created by Manoël Trapier on 20/01/2009.
*/
******************************************************************************/
#ifndef _LOG_H
#define _LOG_H

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* memory.c: Memory implementatoion
* memory.c: Memory implementation
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
// Notes: need to optimize cpu_writemem20
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* memory.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/******************************************************************************
* NewOswan
* nec.c:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
/****************************************************************************
NEC V30MZ(V20/V30/V33) emulator

View File

@ -1,10 +1,11 @@
/*
/******************************************************************************
* NewOswan
* nec.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
#ifndef __NEC_H_
#define __NEC_H_

View File

@ -1,10 +1,10 @@
/*
/******************************************************************************
* NewOswan
* necea.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
static uint32_t EA;
static uint16_t EO;

View File

@ -1,10 +1,10 @@
/*
/******************************************************************************
* NewOswan
* necinstr.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
static void i_add_br8(void);
static void i_add_wr16(void);

View File

@ -1,10 +1,11 @@
/*
/******************************************************************************
* NewOswan
* necintrf.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
/* ASG 971222 -- rewrote this interface */
#ifndef __NECITRF_H_
#define __NECITRF_H_

View File

@ -1,10 +1,10 @@
/*
/******************************************************************************
* NewOswan
* necmodrm.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
static struct
{

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* tom.c:
* rom.c:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* rom.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* ws.c: Base wonderswan implementation
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
////////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/*******************************************************************************
* NewOswan
* ws.h:
* Based on the original Oswan-unix
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
//////////////////////////////////////////////////////////////////////////////
//
//

View File

@ -1,10 +1,11 @@
/*
/******************************************************************************
* NewOswan
* testserial.c: A simple tool to test serial in/out
* Based on the original Oswan-unix
*
* Copyright (c) 2014-2021 986-Studio. All rights reserved.
*
*/
******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>