Skip to content

Commit

Permalink
Added license information
Browse files Browse the repository at this point in the history
git-svn-id: http://cocones.googlecode.com/svn/trunk@5 402e16d5-5a92-567d-3125-37520c512678
  • Loading branch information
compositeur committed Jul 8, 2010
1 parent 52f6e0a commit 323ca20
Show file tree
Hide file tree
Showing 9 changed files with 840 additions and 50 deletions.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

28 changes: 21 additions & 7 deletions NES2A03.h
@@ -1,15 +1,29 @@
//
// NES6502.h
// CoCoNES
//
// Created by Nicholas Meyer on 7/1/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import <Cocoa/Cocoa.h>
#import "NESController.h"

@class NESController;

typedef struct _cpudata {

unsigned char adl;
Expand Down
21 changes: 21 additions & 0 deletions NES2A03.m
@@ -1,3 +1,24 @@
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import "NES2A03.h"
#define RESET_VECTOR 0xfffc
#define IRQ_VECTOR 0xfffe
Expand Down
28 changes: 20 additions & 8 deletions NES2C02.h
@@ -1,11 +1,23 @@
//
// NES2C02.h
// CoCoNES
//
// Created by Nicholas Meyer on 7/6/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//

/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/
#import <Cocoa/Cocoa.h>


Expand Down
27 changes: 20 additions & 7 deletions NES2C02.m
@@ -1,10 +1,23 @@
//
// NES2C02.m
// CoCoNES
//
// Created by Nicholas Meyer on 7/6/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import "NES2C02.h"

Expand Down
27 changes: 20 additions & 7 deletions NESAppDelegate.h
@@ -1,10 +1,23 @@
//
// CoCoNESAppDelegate.h
// CoCoNES
//
// Created by Nicholas Meyer on 7/1/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import <Cocoa/Cocoa.h>
#import "NESController.h"
Expand Down
27 changes: 20 additions & 7 deletions NESAppDelegate.m
@@ -1,10 +1,23 @@
//
// CoCoNESAppDelegate.m
// CoCoNES
//
// Created by Nicholas Meyer on 7/1/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import "NESAppDelegate.h"

Expand Down
31 changes: 24 additions & 7 deletions NESController.h
@@ -1,10 +1,23 @@
//
// NESController.h
// CoCoNES
//
// Created by Nicholas Meyer on 7/1/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import <Cocoa/Cocoa.h>
#import "NES2A03.h"
Expand Down Expand Up @@ -36,4 +49,8 @@
- (id) initWithROMFile:(NSURL *)romURL;
- (unsigned char)readAddress:(unsigned short)address;

- (IBAction)startEmulation:(id)sender;
- (IBAction)pauseEmulation:(id)sender;
- (IBAction)resetEmulation:(id)sender;

@end
27 changes: 20 additions & 7 deletions NESController.m
@@ -1,10 +1,23 @@
//
// NESController.m
// CoCoNES
//
// Created by Nicholas Meyer on 7/1/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
/********************************************************************************
*
* Copyright 2010 MesoSynoptic Studios.
*
* This file is part of CoCoNES.
*
* CoCoNES 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 3 of the License, or
* (at your option) any later version.
*
* CoCoNES 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 CoCoNES. If not, see <http://www.gnu.org/licenses/>.
*
********************************************************************************/

#import "NESController.h"
#define INES_HEADER_SIZE 0x10
Expand Down

0 comments on commit 323ca20

Please sign in to comment.