|
| 1 | +MIT License |
| 2 | + |
| 3 | +Copyright (c) 2023 Paul Moore |
| 4 | + |
| 5 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +of this software and associated documentation files (the "Software"), to deal |
| 7 | +in the Software without restriction, including without limitation the rights |
| 8 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +copies of the Software, and to permit persons to whom the Software is |
| 10 | +furnished to do so, subject to the following conditions: |
| 11 | + |
| 12 | +The above copyright notice and this permission notice shall be included in all |
| 13 | +copies or substantial portions of the Software. |
| 14 | + |
| 15 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 21 | +SOFTWARE. |
| 22 | + |
| 23 | +==================================== |
| 24 | + |
| 25 | +This software depends on the cc65 projects sim65 emulator core https://github.com/cc65/cc65 |
| 26 | + |
| 27 | +Its license is reproduced here |
| 28 | + |
| 29 | +/*****************************************************************************/ |
| 30 | +/* */ |
| 31 | +/* 6502.c */ |
| 32 | +/* */ |
| 33 | +/* CPU core for the 6502 */ |
| 34 | +/* */ |
| 35 | +/* */ |
| 36 | +/* */ |
| 37 | +/* (C) 2003-2012, Ullrich von Bassewitz */ |
| 38 | +/* Roemerstrasse 52 */ |
| 39 | +/* D-70794 Filderstadt */ |
| 40 | +/* EMail: uz@cc65.org */ |
| 41 | +/* */ |
| 42 | +/* Mar-2017, Christian Krueger, added support for 65SC02 */ |
| 43 | +/* */ |
| 44 | +/* This software is provided 'as-is', without any expressed or implied */ |
| 45 | +/* warranty. In no event will the authors be held liable for any damages */ |
| 46 | +/* arising from the use of this software. */ |
| 47 | +/* */ |
| 48 | +/* Permission is granted to anyone to use this software for any purpose, */ |
| 49 | +/* including commercial applications, and to alter it and redistribute it */ |
| 50 | +/* freely, subject to the following restrictions: */ |
| 51 | +/* */ |
| 52 | +/* 1. The origin of this software must not be misrepresented; you must not */ |
| 53 | +/* claim that you wrote the original software. If you use this software */ |
| 54 | +/* in a product, an acknowledgment in the product documentation would be */ |
| 55 | +/* appreciated but is not required. */ |
| 56 | +/* 2. Altered source versions must be plainly marked as such, and must not */ |
| 57 | +/* be misrepresented as being the original software. */ |
| 58 | +/* 3. This notice may not be removed or altered from any source */ |
| 59 | +/* distribution. */ |
| 60 | +/* */ |
| 61 | +/*****************************************************************************/ |
0 commit comments