diff options
author | Ian C <ianc@noddybox.co.uk> | 2012-01-06 21:50:30 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2012-01-06 21:50:30 +0000 |
commit | dead9024c73e16a141b1381ba6e8432d44d2d567 (patch) | |
tree | 5544e3548c5d2e2c59c8c81ef20598b4964d0ed4 /src/Noddybox.Emulation.EightBit | |
parent | 0addd204e54c1789ec0df169aa5373d6356e5dd1 (diff) |
Added some shifted ED opcodes and added GPL headers to all files.
Diffstat (limited to 'src/Noddybox.Emulation.EightBit')
-rw-r--r-- | src/Noddybox.Emulation.EightBit/Binary.cs | 19 | ||||
-rw-r--r-- | src/Noddybox.Emulation.EightBit/ICpu.cs | 16 | ||||
-rw-r--r-- | src/Noddybox.Emulation.EightBit/IDevice.cs | 16 | ||||
-rw-r--r-- | src/Noddybox.Emulation.EightBit/IMemory.cs | 16 | ||||
-rw-r--r-- | src/Noddybox.Emulation.EightBit/Register16.cs | 16 |
5 files changed, 78 insertions, 5 deletions
diff --git a/src/Noddybox.Emulation.EightBit/Binary.cs b/src/Noddybox.Emulation.EightBit/Binary.cs index 59d2752..eb03a8c 100644 --- a/src/Noddybox.Emulation.EightBit/Binary.cs +++ b/src/Noddybox.Emulation.EightBit/Binary.cs @@ -1,4 +1,21 @@ -using System;
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation 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.
+//
+// Noddybox.Emulation 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (c) Ian Cowburn 2012
+//
+using System;
namespace Noddybox.Emulation.EightBit
{
diff --git a/src/Noddybox.Emulation.EightBit/ICpu.cs b/src/Noddybox.Emulation.EightBit/ICpu.cs index 4f333bc..e06c624 100644 --- a/src/Noddybox.Emulation.EightBit/ICpu.cs +++ b/src/Noddybox.Emulation.EightBit/ICpu.cs @@ -1,4 +1,18 @@ -//
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation 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.
+//
+// Noddybox.Emulation 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+//
// Copyright (c) 2012 Ian Cowburn
//
using System;
diff --git a/src/Noddybox.Emulation.EightBit/IDevice.cs b/src/Noddybox.Emulation.EightBit/IDevice.cs index b5117fb..9ed2a92 100644 --- a/src/Noddybox.Emulation.EightBit/IDevice.cs +++ b/src/Noddybox.Emulation.EightBit/IDevice.cs @@ -1,4 +1,18 @@ -//
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation 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.
+//
+// Noddybox.Emulation 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+//
// Copyright (c) 2012 Ian Cowburn
//
using System;
diff --git a/src/Noddybox.Emulation.EightBit/IMemory.cs b/src/Noddybox.Emulation.EightBit/IMemory.cs index 43b50cb..285a2aa 100644 --- a/src/Noddybox.Emulation.EightBit/IMemory.cs +++ b/src/Noddybox.Emulation.EightBit/IMemory.cs @@ -1,4 +1,18 @@ -//
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation 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.
+//
+// Noddybox.Emulation 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+//
// Copyright (c) 2012 Ian Cowburn
//
using System;
diff --git a/src/Noddybox.Emulation.EightBit/Register16.cs b/src/Noddybox.Emulation.EightBit/Register16.cs index 06c9c01..a64eaf4 100644 --- a/src/Noddybox.Emulation.EightBit/Register16.cs +++ b/src/Noddybox.Emulation.EightBit/Register16.cs @@ -1,4 +1,18 @@ -//
+// This file is part of the Noddybox.Emulation C# suite.
+//
+// Noddybox.Emulation 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.
+//
+// Noddybox.Emulation 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
+//
// Copyright (c) 2012 Ian Cowburn
//
using System;
|