1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-01 08:41:32 +00:00

Copyright update, acknowledgements

This commit is contained in:
Seth Morabito 2013-01-03 17:36:27 -08:00
parent da8250778e
commit 4b240d9dfd
3 changed files with 29 additions and 16 deletions

View File

@ -152,32 +152,44 @@ running.
## 6.0 To Do ## 6.0 To Do
- Feedback (in the form of dialogs, status bar, etc). - Feedback (in the form of dialogs, status bar, etc).
- Better debugging tools from the UI, including breakpoints - Better debugging tools from the UI, including breakpoints
and disassebly. and disassebly.
- More accurate timing. - More accurate timing.
- Smarter interrupt handling. - Smarter interrupt handling.
- UI needs a ton more polish. - UI needs a ton more polish.
- More extensive testing. - More extensive testing.
- Clean up JavaDoc. - Clean up JavaDoc.
- Busses are defined by start address and length. Devices are defined - Busses are defined by start address and length. Devices are defined
by start address and end address. They should both use start/end by start address and end address. They should both use start/end
address. address.
- Implement CMOS 65C02 instructions and NMOS / CMOS mode flag. - Implement CMOS 65C02 instructions and NMOS / CMOS mode flag.
- Allow displaying ACIA status and dumping ACIA buffers, for - Allow displaying ACIA status and dumping ACIA buffers, for
debugging. debugging.
## 7.0 Acknowledgements
## 7.0 Licensing This project would not have been possible without the following resources:
- [Graham Edgecombe's JTerminal project] (https://github.com/grahamedgecombe/jterminal),
which forms the core of Symon's console.
- [Andrew Jacobs' 6502 Pages] (http://www.obelisk.demon.co.uk/6502/), for
wonderfully detailed information about the 6502
- [Neil Parker's "The 6502/65C02/65C816 Instruction Set Decoded"] (http://www.llx.com/~nparker/a2/opcodes.html),
for information about how instructions are coded
## 8.0 Licensing
Symon is free software. It is distributed under the MIT License. Symon is free software. It is distributed under the MIT License.
Please see the file 'COPYING' for full details of the license. Please see the file 'COPYING' for full details of the license.

Binary file not shown.

View File

@ -150,7 +150,8 @@ END_CODE
; sign on string ; sign on string
LAB_mess LAB_mess
.byte $0D,$0A,"Symon 6502 SBC (c) 2012, Seth Morabito" .byte $0D,$0A,"Symon (c) 2008-2013, Seth Morabito"
.byte $0D,$0A,"Enhanced 6502 BASIC 2.22 (c) Lee Davison"
.byte $0D,$0A,"[C]old/[W]arm ?",$00 .byte $0D,$0A,"[C]old/[W]arm ?",$00