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