updated copyrights
This commit is contained in:
parent
53704315ab
commit
15d5615cde
5
Makefile
5
Makefile
@ -1,3 +1,8 @@
|
||||
#
|
||||
# Copyright (c) 2017 The Altra64 project contributors
|
||||
# See LICENSE file in the project root for full license information.
|
||||
#
|
||||
|
||||
ROOTDIR = $(N64_INST)
|
||||
GCCN64PREFIX = $(ROOTDIR)/bin/mips64-elf-
|
||||
CHKSUM64PATH = $(ROOTDIR)/bin/chksum64
|
||||
|
@ -1,3 +1,8 @@
|
||||
::
|
||||
:: Copyright (c) 2017 The Altra64 project contributors
|
||||
:: See LICENSE file in the project root for full license information.
|
||||
::
|
||||
|
||||
@echo off
|
||||
set "SystemPath=%SystemRoot%\\System32"
|
||||
IF EXIST %WINDIR%\\sysnative\\reg.exe (
|
||||
|
@ -1,3 +1,7 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifdef DEBUG
|
||||
#define TRACEF(disp, text, ...) dbg_printf(disp, text, __VA_ARGS__);
|
||||
|
11
inc/disk.h
11
inc/disk.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: disk.h
|
||||
* Author: krik
|
||||
*
|
||||
* Created on 2 Čţíü 2011 ă., 4:07
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _DISK_H
|
||||
#define _DISK_H
|
||||
|
11
inc/errors.h
11
inc/errors.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: errors.h
|
||||
* Author: KRIK
|
||||
*
|
||||
* Created on 14 Ìàé 2011 ã., 7:17
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _ERRORS_H
|
||||
#define _ERRORS_H
|
||||
|
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: everdrive.h
|
||||
* Author: KRIK
|
||||
*
|
||||
* Created on 22 Àïðåëü 2011 ã., 20:46
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _EVERDRIVE_H
|
||||
#define _EVERDRIVE_H
|
||||
|
11
inc/fat.h
11
inc/fat.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: fat.h
|
||||
* Author: krik
|
||||
*
|
||||
* Created on 22 Ìàé 2011 ã., 1:06
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _FAT_H
|
||||
#define _FAT_H
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
/**
|
||||
* @file font.h
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 @marekweb https://github.com/marekweb/datastructs-c
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
typedef struct hashtable hashtable;
|
||||
void hashtable_destroy(hashtable *t);
|
||||
typedef struct hashtable_entry hashtable_entry;
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
//protos maybe some aren't necessary any longer
|
||||
void strhicase(u8 *str, u8 len);
|
||||
void PI_DMAWait(void);
|
||||
|
11
inc/mem.h
11
inc/mem.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: mem.h
|
||||
* Author: krik
|
||||
*
|
||||
* Created on 2 Èþíü 2011 ã., 4:07
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _MEM_H
|
||||
#define _MEM_H
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _MP3_H_
|
||||
#define _MP3_H_
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
/*
|
||||
*
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
void sndInit(void);
|
||||
void sndPlayBGM(char* filename);
|
||||
void sndStopAll(void);
|
||||
|
@ -1,4 +1,9 @@
|
||||
//sram.h
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include "types.h"
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef STRLIB_H_
|
||||
enum strtrim_mode_t {
|
||||
STRLIB_MODE_ALL = 0,
|
||||
|
11
inc/sys.h
11
inc/sys.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: tools.h
|
||||
* Author: KRIK
|
||||
*
|
||||
* Created on 16 Àïðåëü 2011 ã., 2:30
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _SYS_H
|
||||
#define _SYS_H
|
||||
|
11
inc/types.h
11
inc/types.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: types.h
|
||||
* Author: KRIK
|
||||
*
|
||||
* Created on 16 Àïðåëü 2011 ã., 2:24
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
11
inc/usb.h
11
inc/usb.h
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* File: fifo.h
|
||||
* Author: KRIK
|
||||
*
|
||||
* Created on 22 Àïðåëü 2011 ã., 20:46
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 KRIK
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#ifndef _FIFO_H
|
||||
#define _FIFO_H
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
// rom.h
|
||||
// rom tools - header inspect
|
||||
#include <stdint.h>
|
||||
|
@ -1,5 +1,8 @@
|
||||
|
||||
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <console.h>
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include "types.h"
|
||||
include "types.h"
|
||||
#include "everdrive.h"
|
||||
#include <libdragon.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1,4 +1,8 @@
|
||||
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <console.h>
|
||||
#include <malloc.h>
|
||||
|
@ -1,7 +1,11 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2011 @marekweb https://github.com/marekweb/datastructs-c
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
/**
|
||||
* Hashtable implementation
|
||||
* (c) 2011 @marekweb
|
||||
*
|
||||
* Uses dynamic addressing with linear probing.
|
||||
*/
|
||||
|
||||
|
11
src/main.c
11
src/main.c
@ -1,9 +1,8 @@
|
||||
/*
|
||||
* ALT64 Menu v0.1.8.6 - 2013
|
||||
* a menu for the Everdrive64
|
||||
* based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
* by saturnu
|
||||
*/
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include "types.h"
|
||||
#include "everdrive.h"
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include "sram.h"
|
||||
#include "everdrive.h"
|
||||
#include "sys.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <mikmod.h>
|
||||
#include <libdragon.h> //needed for audio_get_frequency()
|
||||
#include "hashtable.h"
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <malloc.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include "strlib.h"
|
||||
|
||||
char *strcpytrim(char *d, // destination
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdint.h>
|
||||
#include <dma.h>
|
||||
#include <n64sys.h>
|
||||
|
@ -1,4 +1,8 @@
|
||||
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include "everdrive.h"
|
||||
#include "sys.h"
|
||||
|
@ -1,3 +1,9 @@
|
||||
//
|
||||
// Copyright (c) 2017 The Altra64 project contributors
|
||||
// Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
// See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -1,3 +1,9 @@
|
||||
#
|
||||
# Copyright (c) 2017 The Altra64 project contributors
|
||||
# Portions (c) 2013 saturnu (Alt64) based on libdragon, Neo64Menu, ED64IO, libn64-hkz, libmikmod
|
||||
# See LICENSE file in the project root for full license information.
|
||||
#
|
||||
|
||||
#! /bin/bash
|
||||
sudo mount /dev/sdb1 /mnt
|
||||
file=/mnt/ED64/OS64.v64
|
||||
|
@ -1,3 +1,8 @@
|
||||
::
|
||||
:: Copyright (c) 2017 The Altra64 project contributors
|
||||
:: See LICENSE file in the project root for full license information.
|
||||
::
|
||||
|
||||
@echo off
|
||||
cd ..
|
||||
set "fs=%cd%\res\filesystem\firmware"
|
||||
|
@ -1,3 +1,8 @@
|
||||
#
|
||||
# Copyright (c) 2017 The Altra64 project contributors
|
||||
# See LICENSE file in the project root for full license information.
|
||||
#
|
||||
|
||||
#!/bin/bash
|
||||
# Download and install latest updates for the system [sudo req.]
|
||||
apt-get update
|
||||
|
Loading…
Reference in New Issue
Block a user