From 17857df982ebaedd73786dd99f4e8c76606491cc Mon Sep 17 00:00:00 2001 From: Nobuhiro Hatano Date: Mon, 18 Jun 2012 01:39:18 +0900 Subject: [PATCH] add all source from sourceforge napple1 2.2.1 --- AUTHORS | 6 + CHANGELOG | 81 +++ COPYING | 340 +++++++++ SAMPLE_PROGRAMS | 22 + core/startrek | Bin 0 -> 65536 bytes rom/basic.rom | Bin 0 -> 4096 bytes rom/monitor.rom | Bin 0 -> 256 bytes src/keyboard.c | 79 ++ src/keyboard.h | 22 + src/m6502.c | 1829 +++++++++++++++++++++++++++++++++++++++++++++++ src/m6502.h | 27 + src/main.c | 63 ++ src/makefile | 36 + src/memory.c | 248 +++++++ src/memory.h | 27 + src/msgbuf.c | 73 ++ src/msgbuf.h | 27 + src/pia6820.c | 104 +++ src/pia6820.h | 33 + src/screen.c | 183 +++++ src/screen.h | 29 + 21 files changed, 3229 insertions(+) create mode 100755 AUTHORS create mode 100755 CHANGELOG create mode 100755 COPYING create mode 100755 SAMPLE_PROGRAMS create mode 100755 core/startrek create mode 100755 rom/basic.rom create mode 100755 rom/monitor.rom create mode 100755 src/keyboard.c create mode 100755 src/keyboard.h create mode 100755 src/m6502.c create mode 100755 src/m6502.h create mode 100755 src/main.c create mode 100755 src/makefile create mode 100755 src/memory.c create mode 100755 src/memory.h create mode 100755 src/msgbuf.c create mode 100755 src/msgbuf.h create mode 100755 src/pia6820.c create mode 100755 src/pia6820.h create mode 100755 src/screen.c create mode 100755 src/screen.h diff --git a/AUTHORS b/AUTHORS new file mode 100755 index 0000000..5804299 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,6 @@ +napple1: +Nobu Hatano + +Pom1: +John D. Corrado +Verhille Arnaud diff --git a/CHANGELOG b/CHANGELOG new file mode 100755 index 0000000..969344a --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,81 @@ +CHANGELOG +========= + +2.2.1 +- Fix leaking memory on fd of loadBasic() function +- Fix some coding style issue in memory.c and msgbuf.c + +2.2 +- Add Cygwin (with cygwin base, make, gcc4 and libncurses-dev) support +- Fix Hung after Hardreset. + +2.1 +- If a loading core has a value on the 0xF000 area, the mode + should be better change to 32K mode. +- Update SAMPLE_PROGRAMS file. + +2.0 +- Remove TODO list. +- Synchronize video output for ideal 60 Hz screen refresh. +- Remove terminalSpeed configuration. Now it is 60Hz only. +- Remove replica1 config in napple1.cfg and No more napple1.cfg. +- Mode change command filp 8K memory mode & 32K memory mode +- Delete unused charmap.rom +- Rename core/STARTREK to core/startrek + +1.0 +- Filename input for Load core. +- Confirmation to load basic to ram. +- Command list on the message buffer. +- Remove default core and basic.rom loading function. +- TODO file added. + +0.6 +- March 29, 2010 +- Modify makefile as using macros for common options. +- Add #define _XOPEN_SOURCE 500 to prevent compile warning of usleep. +- Add filename input feature for 'D'ump core. + +0.5 +- March 25, 2010 +- Fix time tic in m6502. To get milli sec current time, use gettimeofday. +- Wall option at compile. So, several fix in m6502.c to get rid of warnings. + +0.4 +- March 25, 2010 +- Fix some descriptions in READE and SAMPLE_PROGRAMS +- Use independant ncurses windows for main screen and message buffer, + instead of a single stdscr. The new screen layoht is following. + During loading rom and core, printing some messages to the buffer. + + +-----------------------------+ + |(0,0) (0, 40)| + | screen | + | | + |(23,0) (23,40)| + +-----------------------------+ + |(24,0) message buffer (24,40)| + +-----------------------------+ + +0.3 +- March 21, 2010 +- Update README +- Allow smaller lines/colums terminal + +0.2 +- March 18, 2010 +- Delete automatic save memory function during quit. +- Shift + D "Dump core" +- Dump & Load core on file core/dumped +- Add sample core file in core directory + +0.1 +- March 16, 2010 +- Fixed old program name nPom1 to napple1. +- napple1 now includes Pom1 rom. +- if napple1 started with normal mode, and if core file + isn't existing, load rom/basic.rom to ram 0xE000. + +0.0 +- March 15, 2010 +- Derived from Pom1. First alpha release diff --git a/COPYING b/COPYING new file mode 100755 index 0000000..d60c31a --- /dev/null +++ b/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program 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 2 of the License, or + (at your option) any later version. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/SAMPLE_PROGRAMS b/SAMPLE_PROGRAMS new file mode 100755 index 0000000..22a9d5b --- /dev/null +++ b/SAMPLE_PROGRAMS @@ -0,0 +1,22 @@ +SAMPLE PROGRAMS +=============== + +STARTREK +-------- +Original code is downloaded from http://www.brielcomputers.com/files/games.zip +How to start it. + + ./napple1 + Shift + L (Load core) + Load core. Filename: startrek (core/startrek) + E2B3R (re-entry to BASIC) + RUN (start program in BASIC) + +KRUSADER +-------- +Replica1's assembler. It is in startrek rom also. + + ./napple1 + Shift + L (Load core) + Load core. Filename: startrek (core/startrek) + F000R (cold start KRUSADER) diff --git a/core/startrek b/core/startrek new file mode 100755 index 0000000000000000000000000000000000000000..a5b62f679fbdbfa7243939f9810e8d088a0730dd GIT binary patch literal 65536 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%0D0j@dK+FnN zLQj@SbC!>nPU6vLPvcH+aHSU8v$!udxKpcY+fG=|3#T&&xYHJY@rEzBFPyg1Ep?0( zw^Q!P*nWCf9h0lS<}+X9H%s{zhK=mtH9N9!v-}x7;~Dn%=XPXWym-;Rlylktm2>-i z>}O}~i<{oIj_h4rY;%>RRkh~n_@7G^+fVnV<+YWiZQXv_=QD%;^sEaSt`&{GxWI62 zn4;E%w$ogz*}fdC{x|2QB(&D&^YP4%tR1{_N1A<6(@(-v?Ms?|nirOlV%4lnGeZd1 zno*o$y<$7<#f!j5{6IQs`3q{ztfz~u zKR>_4a#VpXyD#~=KDww^xCTYC(1|Yae+WFYFK^|X1uVP0Rd8l9oY%sXWNNsxyS)Zk zw8~o3&waec=G|4#K(X1a=Y`8{PEjWpZ-)|J_HwPl2@0ps>ZlXi+UoP3Q%c*F(hghg z_V)H#*ue=HKrIa5gw<`X$b8X)3?K`FG=vIXN+E04&uleL_`uC`jLVY%3 z=)yT*c%JKEe*z1FsPkN#6dSaZc34UW2bB-cj9dYu(Bi@(yqs%2@WL{>`EhnnHA}haRFXo)~&$-JG5UKCW zwa$t(K2o+i+h4ZXr#~$p5Z|*-tkvuIP`zQt=0g9D)rHO-#f6u5d~O(DT+UvKEVjHo zjq^*y>CCx>E@n$1d@Sr!)LJVS7CC*8oTn2D4Q^`gK&9YxNao68V}>kNMY5g@=R^aUDKPT^pvb)nO9a+7?--@Wj^I z=5pfVwkBfs+c&my?Rnbvjs&ORy4>m%+?QLewdVQP;ah9rTTciJxjNwmt{yYq&)wt( za35PKQehwMh=Q9P6}6srchQ z&)^yP3v@#Z=SKUHpC!1(xl&T@P88(s$l|rVSs*mt&_|%hja*X!n+m7ph4VN53{v1n zaLwnF8}+0X->mI$)#C*(Wp_3|E4k4aWg*mYf^%;c2#hzZ9uS9$I;%9lv6wqqzVm`% zMI?7BqnLgxah$S7>`Vora568yTz`>smFHf>fNr*%n%m!WG3{O$@>!eLyyK^}Ms0qY znSUL+#xrp7E;|qZnI*?^Zkr3kb8+qr&XwykvkR#Q+ljvB^ArPzThjEVnb|EJ>>65= z>^6?6r7==)OFF?NU$OWVT9jX)4QI8v@Vv9loi+(-mKSh{L!4!T;M#B+6oPxh7jJ!; z&r?=~E;%GuaLdtVAvq$f80H8it4g+BGqW}-6V5f#vKM9SrjE3(-0Y?tcaaM&vB<4- z#KrZ(6JN{CzV3u2T+QwYloq=6-DphX8I5I7lhaT?Z#MskxrgnHU0Gw;tnWoGNU zKuv$W~T6Kqd2B=N1U!YOq&gT>DU7tB~jvae4@G-_6 ztMjj5J^_W_zXJc=^y6PqSy{P4mfb5?uB3&*)_%YLEHK zS((qOS8XFx6}djY-{>okyO8D-uofe-oc5L?SD`bKbI}kd{#b5!-YP~~Whcl`kXr5!D0fCaFSx`S zB-uaeFcFGC8av{WG?IC)koSFOY z;)0JyXM7yV4AwlU)QoxIjk4Wg+rsu)_7uOdEv#(+9_t$)m+s%Q|BrYQKG|=*y3bN- zeLr?;S>T?c++PbTvb?dsZ2zCK%7i^x?`!r7rEe725A6R_XQ{nRD1C3+KbIXA_Pt>h z$_`B3Ul#UpV(I>(_d^~lvs?FB-VaF$-lr+|)_nrw_b({eUG{#Aaj&KD{g_F(zOiS| z?msefHy^9m%q-ZJvF(dDewXpPv~90$d!H-~%Qa+guG+k6V_0tdH^ScidvLK7chgR9 z4A0#s?8*3fc*e)!s5ZY{wtwH-AH4lbv`IW%xUaPPfc;9r?#@3QXx&%(wIEng{?9+F zSn__{3}$I)uHks}mQ~xnzwMcQLUEayUY5K!?vZU%K^5`Kf!6(dyZ5*5+kNJ%kG}lq zt1o|F`K7zI{sgn&nf~?#m_aFeKgqS^Y)+4 z>cI?SY2;Vpjg%s|%vdEAIz^*(!m$+VSTj=fnVsf~TMI~;Ylo>Ubw_Qj+*4xae@b2W z|CVlGB_W)a!h|m*EmjS5Q85Ke2%+6^TIgu|A}^A|_cp9B+FiNQS+ioER2IUtU_$b{ zsM;i?;{JR!%^6JFQ;{T_kR&h4^O}}-iYeCL6$?&uVrL2eLzv3eVj31UnX1l%2Nh=Q zv!0Q34wv;L_0l%ijz5^-?q_xiu2ei{Y+)&qX1Z!bBwkEI_Yw$NoXHs8=a%I2{4ilj zWJ2cL$SI4bEXkF+1seYacRp`==NwuTx~fcq8^ai%oeH_nn+|pcN^4Pi!Wxmi5T!4e z4z-z1bYhi=^-veP@vQ03U96VQkkj(x59q?^(GDN}>}h6XRtq_kC7gS~qURQw_O>-; zNhAU5R~9TD_0j8EpLerFa!t`*i-{{6wNlh z(N7CHaEn{YEf;QbX$c!WDr23>ju$d*?Y)j+Pg?23Es;fWw~HnC`T8qDqPvRLef;F=k0e&#Fw)oI~{aXKJ5ua^GwkSIo6i8eVJ3b z(Y~~Od9Bo4lrD!WCAHFZbJ2=~ts9ndOL1M!E%z0s%dxp~7_H8gZYa0vrPXNljT!p5 z0%#YeSM^DuMJrnS<)yseX}c-)@06c&(m}NX>6{sC=M^V=a-e{*>*P@AkWcC@nqj7T z6#+e9MOJ@baRxre!sRE9#YmA}oos*~V&ruNezSL~{yy=0`cbpY;)8OZXf#HPj~lzi zr;R#st?^=l*`g`o7$_I=t2*c#Hx?qPFr6im{pbo?bw$vLPslNr*uaxzEbiEr`RGak zld}}Yu)?C_(kz5aXHQ)z)E#?5(pjRU^;=UDUSCIqsH-wjx!sml*FPm`k@E95Xdx2H*$g>-zOc<@Yt4koZj)JP#t3nR}Li5!YL zr*whBBIydEqz5o#CAB$EdS~hB>S?D{&_%YNOHa}nU&&l$M+g*Tkp)3O(sp+MdNc`WoI0aa^2 z{~|lD2g*NIv2ZOk8D@|@FJZ$x?j}s^R(l@|rr%unWck0`EP5*8-#)qNjgn)%8fn<$X|!DT?+kLU=pa<9$kAfN9aPf4Q#cfmFZ<(c*GBkz38agH54mVK!)2 z$;Cx;WDBo_THE8qsZx&*?nV};$`O#~jg@5iycsQycjtXkz$gtprgPWn^9ih%;^cV9 z(6hZg;2!WvWo)GknLwfj*yDDLt-|(zLXy*&bE)V?&NtvF^cM9Lu9jm`;p#HH7%lcX zYvFH;?w2>^tjT#!=t&iNQ`zFHkg}Rf&3@4~AIhxZR@>(98p}A3g-X4)`CN|^mtJ~F zXWyeT7YHxPIw5^~8e4e{6VYQBFY4uq?8806Y<5~tf-pZbf}4-&SRkZwtE-=rc4u(C z861|QuUtdx2%ZSDxA&NS(2J#*cfdBEDh3smE1kk}@hRcSqBvRSWu;hP@f2D}j}#CS zzD$y13$#j!oGiqdmRu93%Nq+c;v+B%N+-wUJXNcpw^o=Vtuj-zu(LpX2qviQVn4cp zn=j`nZ>SV2JSnE+g(It>rjWvimXEyUcv6ZzI_6gEQ*y%53G_BBSMn91KVPo7nHT=$ z>o=|1oTto~LwJzcIdjBm@cW<2?5%6yKTDY1Mnlz{HUukK*FHx&RXw|UHl|y4VV<=n z&o!i2+#GuxHye`=9XLdF;9X2?Rw}-+OZzZTO$OXShIqdmA*3ff@6UvH8iZO%*K4Zh zBy5XOQ#9P`o%c^C6(6?(g+b?i)?H9SH?O$`#+39EmWwPkX z;*OveSeX3JMv}X; z#4H-5CQgCTw_so153x{d}t&5tTv3vENvfK;tjNf@=%>7D6gf7Z|SWcSj%?lST^_J{qu zdx{t4MSR~Hj~!#Z;TH=_jvT(3r-ejAoTTG7<5=Lx&6}LTpyj6RWb^uYCe_x19I$|} z@AOwqbLL$x(B`Z?rpuEvN)QIwtp37j1)*N8JTBCb7keavMy?}qx0K%0N*y_C&AG-l zv=iCVoTQ9kpvr<=QWaaKGKJ0AvUElg)$)~j!u{oeOroEMCmE?GK?q>d& zmrQv2<)7`YIIEfX%qv?8j-O+~8AcZ$&*-C*5~l0ebYskBU7mJg`or{&=fV3E^qHAB z@8KBdJZ4znZXxuJ^1=I*fBMCT%!Hq9VVE_Gw*NY3A@}ig!}Lih$!nO^$;r&bxL=zIC3yF-1j9hG5{oJBu^PZoO{PfB+S-yPvvfOvs@4qU`U$s^**8QPk)qSxG z^Rk~=wfw0??BmOpJ-2A_b5GBkw|vdwB`fDIUxTOR%b#1tE`II>cFi;F!w>!wyX?7n zPcL7w?1h-Ln9PbExtG_UHf~*0SZ6ybd}qE<-%|!@!$8jF>Jx zUJ!odw*&cJ_?q24@=Jx&pb|e3&GM_FNzM}A#P_-Ka>MxN<8h#+vGwfo;_&f0TARF# zI01ad_)X&m;G6!hDb8O&<>U|Z;Sg+T->xpE=<tZ2sYm{u)@5L&VNSs5M-ME8>)AQWx*M`*SwFsb(X@TQ^z#8hP8F^eT`BBNF>_aQ zu4H$IqZjB^v)S?h(p)SU=oP6Y77~g_K(YWqLO$?~TUhDjfckSyzHkH`4)daXCWmL5W02Shl^!D2T`TrYQtW8~9L{nxx7 zz9W*mU)gVqku z8c^vBb`w2UXUvT}wK_H_$zt>zt>d4Skx1O(2nNe&WxTui2e53XvaQvwfk?6)%#Xo) z-0hLjgojLQsvJLyq_yL0dNIP z@|UY_0QCpd%kg@YfVLT4>N$nVkGmc;Tk_48DV&f^)T(&3!Sh?xH{#9KJ18NL@{*<- zbl;@SB{qIhB?+&4vU{W{yDcC#y91)-LHq)r9Ve_a&5kKjo+?OKP1L zQzWy9m4C-cXN|L8m#@K43)xYuRJ8d+PBc;~*}9`jFF%Q6Hg9YG!hBKhOZFv z%KFS5M{TU(3gNcg)tH-XrR?Ph%B-?kbx!EG&tPXPL47b$=e&9IX6SV!hJJ-4O{30@ zhjtAe;-8w^7%~3ps z^Z}LIgA{821Qt;YOK1eFz?F2VShD0ra}?@;3INu^P(Mp$!n)v+v$oz7{*+lIyr0Qw zAhIGBGkc8co@7b4b&fK{Z{7qM3CHDY+@D~Up$5`a-{jU|?);+YTn`HFS(Y`;;k#f+ zoT2DO{RGIG&jTBXzz>#tS#W|w6JPVDViWg-BK4YTa)7Y#)yrGW(!=|by@w5^V zvNQf#FyiSrO5k2YoH!A_f)%CD^TS1GauKQqqP59n6#SqU93Tn~(96d|32!uNxgUu8 z-GO**vR=Li+sX^wedmt%u9mrLIZD6-=5r8^jwe8dlSrlB0S^LJlSq+QeB~)g@Dvq+ zN#JN0HlZl|)8GcVNM6&2a}7tVNNkNWHC*IJMARyxq2H zLAc-{wTL|H@K@6p63OYN>CCy4AoZpQ$7-;Ye-KzG+FUH3{Xh85Dc>x7!*ig#L@;~G zn;u1ADlSl&BOyPEgs!4#U|_a9aPynY)(ycoU3#!mv&1rIgrodRQA;+PV=1bu^yzhP z`XY6H-*ny8qSgLR>bBX>9eNq*G8u_fJ%TN|q@Rcg_B3}=uwBmOwj%=w%&r1c89d^u(#O{YE%Nj3dH}fVoUCci35eGFmOR+;AR20+W-+?^LRTgH<8%sz6l3g!##ET&o;-@pS0!aZ8jwd3?fkd~)P{l?BtB1XMSwjY4NzR(HGt|2(^_DSH zAX%S_8aWb6ayAw-vz)$&3-Bpp;U-0dalInh*MOOM9tXs~3YPg;ER6vMmP$wdd(6uk zq@OK$1VDN;8A#rV#zmF3> z1&zAKzOzcUmgJY4JY=L%uNppq;;wP(SIL55%l3S*`_Y4=zA=~!)AH5sopK+$e(SKI zk7E2VbGPTAzjGytMmwJ&(b##N=*%S{OdZkKw-?hzV6-_B7=<&_XC`{)+5LDv)9nx0 zhgXwwCgdDm2c<#hD?>1`_~iAfT-)w==!ri+OT8h z_HPfgell_IjmqDncVDu6xA<#0PZX0|wjCk#HF^7=KHID7^SWLzx9crCKu#ZcbX^yH+XsA?*mR@Di3Z{NOcyc2}3jcZ!^mafNjJ)MFXfT*gfjZdWD zf#u`l>6EIaR3MicPpeuweQQdanu5wl)8U1=G^~T4@lOGzN9rtCz?d|xSYi{fSFf`f2@+&1=n!I6`>lS%xR=J zD^xkj;U>`+F(c7Pal$V%{o8rL%x5Bi1^`>9{@A!3UKWeOWhk-_s5EIvz)pSbw)_3Wx5arMe&NerK;KlXd??>_7J`@j44IlkrmhX4I{SUomR z3F)UwAW{hF4JBT?rI!}cTbSd_G2&>=cL{}YRkKMf=NaXbHI8`r^CtXLO(+!rqPKgn(4%G!hNA31}# z#aWTniaW|0LucAQN_B*SxZ`Ne_ky3|wlW?E&#Y??=AL}EqrItO$;M!aZ{sSK6n@pe zyx1q&Frn+)8czi)mRnmnU&Zn@(3Z8doH|Wxsl3otNo=ce)Qpt9?|9!{^L9-I`FgIq z$W_^0x$j`E`|Dre*7g=?IRA{X>4Qt%ZMenp-crZOr7+DL3bwZ$I)3OFta6z1K zV9B4ISQe2Q&;Bn4F78WE0#Pj7!B@xI*A$IEGba#A8PAt-uW4y*nio^6&d`1U6CM%>Ea+O10le3%{Vd zCxM2+%=&;Im9xVlf6a)}0kQ5w8p8eh6c%kTcGQXnOSqLlDo#SSROuf~P>B@1ejM7M zGh{Dc;7K=%xkmC!MX$ZSRPs8FLg8vG5^_$*_)6o}2$^`7k-AHO(XMi$r~;LES#}jJ zG3S?WF|XaVw!|&ZU?cxy$;;A5CSZk6?542<$5`#M0pIQP+0<`Q*1o&6pQF#AMm0|CJ1@xLUPO>||g%+56$j$#oOHeE4v3*N4|9FMY6X(`eId(E>_& zZaB#`fi1J+WTtKjhg-cCCP4m=+A15w6IHL7ox{7vyz*3DywP$J= 'a' && tmp <= 'z') { + tmp = tmp - 'a' + 'A'; + } + + writeKbd((unsigned char)(tmp + 0x80)); + writeKbdCr(0xA7); + + return 1; +} diff --git a/src/keyboard.h b/src/keyboard.h new file mode 100755 index 0000000..990226f --- /dev/null +++ b/src/keyboard.h @@ -0,0 +1,22 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +int handleInput(void); diff --git a/src/m6502.c b/src/m6502.c new file mode 100755 index 0000000..36af85e --- /dev/null +++ b/src/m6502.c @@ -0,0 +1,1829 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#define _XOPEN_SOURCE 500 +#include +#include +#include +#include +#include +#include + +#include "m6502.h" +#include "pia6820.h" +#include "memory.h" + +#define N 0x80 +#define V 0x40 +#define M 0x20 +#define B 0x10 +#define D 0x08 +#define I 0x04 +#define Z 0x02 +#define C 0x01 + +static unsigned char accumulator, xRegister, yRegister, statusRegister = 0x24, stackPointer; +static int IRQ = 0, NMI = 0; +static unsigned short programCounter; +static unsigned char btmp; +static unsigned short op, opH, opL, ptr, ptrH, ptrL, tmp; +static pthread_t thread; +static int cycles; + +/* sync is a synchronization between real time and ideal time of apple 1 */ +static int sync_cycles; /* cycles per 1 sync */ +static int sync_interval; /* sync interval time in m sec */ +static long long interval_start; /* interval start time in m sec from 0 time */ + +static unsigned short memReadAbsolute(unsigned short adr) +{ + return (memRead(adr) | memRead((unsigned short)(adr + 1)) << 8); +} + +static void synchronize(void) +{ + int processed; /* processed real time in m sec */ + int delay; /* delay m sec to be added to real time */ + struct timeval t; + + gettimeofday(&t, NULL); + processed = (int)(t.tv_usec / 1000 + + t.tv_sec * 1000 + - interval_start); + if (processed < 0) + processed = 0; + delay = sync_interval - processed; + if (delay < 0) + delay = 0; + usleep((unsigned int)(delay * 1000)); /* m sec to u sec */ + + gettimeofday(&t, NULL); + interval_start = (long long)(t.tv_usec / 1000 + + t.tv_sec * 1000); +} + +static void pushProgramCounter(void) +{ + memWrite((unsigned short)(stackPointer + 0x100), (unsigned char)(programCounter >> 8)); + stackPointer--; + memWrite((unsigned short)(stackPointer + 0x100), (unsigned char)programCounter); + stackPointer--; + cycles += 2; +} + +static void popProgramCounter(void) +{ + stackPointer++; + programCounter = memRead((unsigned short)(stackPointer + 0x100)); + stackPointer++; + programCounter += memRead((unsigned short)(stackPointer + 0x100)) << 8; + cycles += 2; +} + +static void handleIRQ(void) +{ + pushProgramCounter(); + memWrite((unsigned short)(0x100 + stackPointer), (unsigned char)(statusRegister & ~0x10)); + stackPointer--; + statusRegister |= I; + programCounter = memReadAbsolute(0xFFFE); + cycles += 8; +} + +static void handleNMI(void) +{ + pushProgramCounter(); + memWrite((unsigned short)(0x100 + stackPointer), (unsigned char)(statusRegister & ~0x10)); + stackPointer--; + statusRegister |= I; + NMI = 0; + programCounter = memReadAbsolute(0xFFFA); + cycles += 8; +} + +static void Imp(void) +{ + cycles++; +} + +static void Imm(void) +{ + op = programCounter++; +} + +static void Zero(void) +{ + op = memRead(programCounter++); + cycles++; +} + +static void ZeroX(void) +{ + op = (memRead(programCounter++) + xRegister) & 0xFF; + cycles++; +} + +static void ZeroY(void) +{ + op = (memRead(programCounter++) + yRegister) & 0xFF; + cycles++; +} + +static void Abs(void) +{ + op = memReadAbsolute(programCounter); + programCounter += 2; + cycles += 2; +} + +static void AbsX(void) +{ + opL = memRead(programCounter++) + xRegister; + opH = memRead(programCounter++) << 8; + cycles += 2; + + if (opL >= 0x100) + cycles++; + + op = opH + opL; +} + +static void AbsY(void) +{ + opL = memRead(programCounter++) + yRegister; + opH = memRead(programCounter++) << 8; + cycles += 2; + + if (opL >= 0x100) + cycles++; + + op = opH + opL; +} + +static void Ind(void) +{ + ptrL = memRead(programCounter++); + ptrH = memRead(programCounter++) << 8; + op = memRead((unsigned short)(ptrH + ptrL)); + ptrL = (ptrL + 1) & 0xFF; + op += memRead((unsigned short)(ptrH + ptrL)) << 8; + cycles += 4; +} + +static void IndZeroX(void) +{ + ptr = xRegister + memRead(programCounter++); + op = memRead(ptr); + op += memRead((unsigned short)((ptr + 1) & 0xFF)) << 8; + cycles += 3; +} + +static void IndZeroY(void) +{ + ptr = memRead(programCounter++); + opL = memRead(ptr) + yRegister; + opH = memRead((unsigned short)(ptr + 1)) << 8; + cycles += 3; + + if (opL >= 0x100) + cycles++; + + op = opH + opL; +} + +static void Rel(void) +{ + op = memRead(programCounter++); + + if (op >= 0x80) + op |= 0xFF00; + + op += programCounter; + cycles++; +} + +static void WAbsX(void) +{ + opL = memRead(programCounter++) + xRegister; + opH = memRead(programCounter++) << 8; + cycles += 3; + op = opH + opL; +} + +static void WAbsY(void) +{ + opL = memRead(programCounter++) + yRegister; + opH = memRead(programCounter++) << 8; + cycles += 3; + op = opH + opL; +} + +void static WIndZeroY(void) +{ + ptr = memRead(programCounter++); + opL = memRead(ptr) + yRegister; + opH = memRead((unsigned short)((ptr + 1) & 0xFF)) << 8; + cycles += 4; + op = opH + opL; +} + +static void setStatusRegisterNZ(unsigned char val) +{ + if (val & 0x80) + statusRegister |= N; + else + statusRegister &= ~N; + + if (!val) + statusRegister |= Z; + else + statusRegister &= ~Z; +} + +static void LDA(void) +{ + accumulator = memRead(op); + setStatusRegisterNZ(accumulator); + cycles++; +} + +static void LDX(void) +{ + xRegister = memRead(op); + setStatusRegisterNZ(xRegister); + cycles++; +} + +static void LDY(void) +{ + yRegister = memRead(op); + setStatusRegisterNZ(yRegister); + cycles++; +} + +static void STA(void) +{ + memWrite(op, accumulator); + cycles++; +} + +static void STX(void) +{ + memWrite(op, xRegister); + cycles++; +} + +static void STY(void) +{ + memWrite(op, yRegister); + cycles++; +} + +static void setFlagCarry(unsigned short val) +{ + if (val & 0x100) + statusRegister |= C; + else + statusRegister &= ~C; +} + +static void ADC(void) +{ + unsigned short Op1 = accumulator, Op2 = memRead(op); + cycles++; + + if (statusRegister & D) + { + if (!((Op1 + Op2 + (statusRegister & C ? 1 : 0)) & 0xFF)) + statusRegister |= Z; + else + statusRegister &= ~Z; + + tmp = (Op1 & 0x0F) + (Op2 & 0x0F) + (statusRegister & C ? 1 : 0); + accumulator = tmp < 0x0A ? tmp : tmp + 6; + tmp = (Op1 & 0xF0) + (Op2 & 0xF0) + (tmp & 0xF0); + + if (tmp & 0x80) + statusRegister |= N; + else + statusRegister &= ~N; + + if ((Op1 ^ tmp) & ~(Op1 ^ Op2) & 0x80) + statusRegister |= V; + else + statusRegister &= ~V; + + tmp = (accumulator & 0x0F) | (tmp < 0xA0 ? tmp : tmp + 0x60); + + if (tmp >= 0x100) + statusRegister |= C; + else + statusRegister &= ~C; + + accumulator = tmp & 0xFF; + } + else + { + tmp = Op1 + Op2 + (statusRegister & C ? 1 : 0); + accumulator = tmp & 0xFF; + + if ((Op1 ^ accumulator) & ~(Op1 ^ Op2) & 0x80) + statusRegister |= V; + else + statusRegister &= ~V; + + setFlagCarry(tmp); + setStatusRegisterNZ(accumulator); + } +} + +static void setFlagBorrow(unsigned short val) +{ + if (!(val & 0x100)) + statusRegister |= C; + else + statusRegister &= ~C; +} + +static void SBC(void) +{ + unsigned short Op1 = accumulator, Op2 = memRead(op); + cycles++; + + if (statusRegister & D) + { + tmp = (Op1 & 0x0F) - (Op2 & 0x0F) - (statusRegister & C ? 0 : 1); + accumulator = !(tmp & 0x10) ? tmp : tmp - 6; + tmp = (Op1 & 0xF0) - (Op2 & 0xF0) - (accumulator & 0x10); + accumulator = (accumulator & 0x0F) | (!(tmp & 0x100) ? tmp : tmp - 0x60); + tmp = Op1 - Op2 - (statusRegister & C ? 0 : 1); + setFlagBorrow(tmp); + setStatusRegisterNZ((unsigned char)tmp); + } + else + { + tmp = Op1 - Op2 - (statusRegister & C ? 0 : 1); + accumulator = tmp & 0xFF; + + if ((Op1 ^ Op2) & (Op1 ^ accumulator) & 0x80) + statusRegister |= V; + else + statusRegister &= ~V; + + setFlagBorrow(tmp); + setStatusRegisterNZ(accumulator); + } +} + +static void CMP(void) +{ + tmp = accumulator - memRead(op); + cycles++; + setFlagBorrow(tmp); + setStatusRegisterNZ((unsigned char)tmp); +} + +static void CPX(void) +{ + tmp = xRegister - memRead(op); + cycles++; + setFlagBorrow(tmp); + setStatusRegisterNZ((unsigned char)tmp); +} + +static void CPY(void) +{ + tmp = yRegister - memRead(op); + cycles++; + setFlagBorrow(tmp); + setStatusRegisterNZ((unsigned char)tmp); +} + +static void AND(void) +{ + accumulator &= memRead(op); + cycles++; + setStatusRegisterNZ(accumulator); +} + +static void ORA(void) +{ + accumulator |= memRead(op); + cycles++; + setStatusRegisterNZ(accumulator); +} + +static void EOR(void) +{ + accumulator ^= memRead(op); + cycles++; + setStatusRegisterNZ(accumulator); +} + +static void ASL(void) +{ + btmp = memRead(op); + + if (btmp & 0x80) + statusRegister |= C; + else + statusRegister &= ~C; + + btmp <<= 1; + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 3; +} + +static void ASL_A(void) +{ + tmp = accumulator << 1; + accumulator = tmp & 0xFF; + setFlagCarry(tmp); + setStatusRegisterNZ(accumulator); +} + +static void LSR(void) +{ + btmp = memRead(op); + + if (btmp & 1) + statusRegister |= C; + else + statusRegister &= ~C; + + btmp >>= 1; + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 3; +} + +static void LSR_A(void) +{ + if (accumulator & 1) + statusRegister |= C; + else + statusRegister &= ~C; + + accumulator >>= 1; + setStatusRegisterNZ(accumulator); +} + +static void ROL(void) +{ + int newCarry; + + btmp = memRead(op); + newCarry = btmp & 0x80; + btmp = (btmp << 1) | (statusRegister & C ? 1 : 0); + + if (newCarry) + statusRegister |= C; + else + statusRegister &= ~C; + + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 3; +} + +static void ROL_A(void) +{ + tmp = (accumulator << 1) | (statusRegister & C ? 1 : 0); + accumulator = tmp & 0xFF; + setFlagCarry(tmp); + setStatusRegisterNZ(accumulator); +} + +static void ROR(void) +{ + int newCarry; + + btmp = memRead(op); + newCarry = btmp & 1; + btmp = (btmp >> 1) | (statusRegister & C ? 0x80 : 0); + + if (newCarry) + statusRegister |= C; + else + statusRegister &= ~C; + + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 3; +} + +static void ROR_A(void) +{ + tmp = accumulator | (statusRegister & C ? 0x100 : 0); + + if (accumulator & 1) + statusRegister |= C; + else + statusRegister &= ~C; + + accumulator = tmp >> 1; + setStatusRegisterNZ(accumulator); +} + +static void INC(void) +{ + btmp = memRead(op); + btmp++; + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 2; +} + +static void DEC(void) +{ + btmp = memRead(op); + btmp--; + setStatusRegisterNZ(btmp); + memWrite(op, btmp); + cycles += 2; +} + +static void INX(void) +{ + xRegister++; + setStatusRegisterNZ(xRegister); +} + +static void INY(void) +{ + yRegister++; + setStatusRegisterNZ(yRegister); +} + +static void DEX(void) +{ + xRegister--; + setStatusRegisterNZ(xRegister); +} + +static void DEY(void) +{ + yRegister--; + setStatusRegisterNZ(yRegister); +} + +static void BIT(void) +{ + btmp = memRead(op); + + if (btmp & 0x40) + statusRegister |= V; + else + statusRegister &= ~V; + + if (btmp & 0x80) + statusRegister |= N; + else + statusRegister &= ~N; + + if (!(btmp & accumulator)) + statusRegister |= Z; + else + statusRegister &= ~Z; + + cycles++; +} + +static void PHA(void) +{ + memWrite((unsigned short)(0x100 + stackPointer), accumulator); + stackPointer--; + cycles++; +} + +static void PHP(void) +{ + memWrite((unsigned short)(0x100 + stackPointer), statusRegister); + stackPointer--; + cycles++; +} + +static void PLA(void) +{ + stackPointer++; + accumulator = memRead((unsigned short)(stackPointer + 0x100)); + setStatusRegisterNZ(accumulator); + cycles += 2; +} + +static void PLP(void) +{ + stackPointer++; + statusRegister = memRead((unsigned short)(stackPointer + 0x100)); + cycles += 2; +} + +static void BRK(void) +{ + pushProgramCounter(); + PHP(); + statusRegister |= B; + programCounter = memReadAbsolute(0xFFFE); + cycles += 3; +} + +static void RTI(void) +{ + PLP(); + popProgramCounter(); + cycles++; +} + +static void JMP(void) +{ + programCounter = op; +} + +static void RTS(void) +{ + popProgramCounter(); + programCounter++; + cycles += 2; +} + +static void JSR(void) +{ + opL = memRead(programCounter++); + pushProgramCounter(); + programCounter = opL + (memRead(programCounter) << 8); + cycles += 3; +} + +static void branch(void) +{ + cycles++; + + if ((programCounter & 0xFF00) != (op & 0xFF00)) + cycles++; + + programCounter = op; +} + +static void BNE(void) +{ + if (!(statusRegister & Z)) + branch(); +} + +static void BEQ(void) +{ + if (statusRegister & Z) + branch(); +} + +static void BVC(void) +{ + if (!(statusRegister & V)) + branch(); +} + +static void BVS(void) +{ + if (statusRegister & V) + branch(); +} + +static void BCC(void) +{ + if (!(statusRegister & C)) + branch(); +} + +static void BCS(void) +{ + if (statusRegister & C) + branch(); +} + +static void BPL(void) +{ + if (!(statusRegister & N)) + branch(); +} + +static void BMI(void) +{ + if (statusRegister & N) + branch(); +} + +static void TAX(void) +{ + xRegister = accumulator; + setStatusRegisterNZ(accumulator); +} + +static void TXA(void) +{ + accumulator = xRegister; + setStatusRegisterNZ(accumulator); +} + +static void TAY(void) +{ + yRegister = accumulator; + setStatusRegisterNZ(accumulator); +} + +static void TYA(void) +{ + accumulator = yRegister; + setStatusRegisterNZ(accumulator); +} + +static void TXS(void) +{ + stackPointer = xRegister; +} + +static void TSX(void) +{ + xRegister = stackPointer; + setStatusRegisterNZ(xRegister); +} + +static void CLC(void) +{ + statusRegister &= ~C; +} + +static void SEC(void) +{ + statusRegister |= C; +} + +static void CLI(void) +{ + statusRegister &= ~I; +} + +static void SEI(void) +{ + statusRegister |= I; +} + +static void CLV(void) +{ + statusRegister &= ~V; +} + +static void CLD(void) +{ + statusRegister &= ~D; +} + +static void SED(void) +{ + statusRegister |= D; +} + +static void NOP(void) +{ +} + +static void Unoff(void) +{ +} + +static void Unoff1(void) +{ +} + +static void Unoff2(void) +{ + programCounter++; +} + +static void Unoff3(void) +{ + programCounter += 2; +} + +static void Hang(void) +{ + programCounter--; +} + +static void executeOpcode(void) +{ + unsigned char opcode = memRead(programCounter++); + + switch (opcode) + { + case 0x00: + Imm(); + BRK(); + break; + case 0x01: + IndZeroX(); + ORA(); + break; + case 0x02: + Hang(); + break; + case 0x03: + Unoff(); + break; + case 0x04: + Unoff2(); + break; + case 0x05: + Zero(); + ORA(); + break; + case 0x06: + Zero(); + ASL(); + break; + case 0x07: + Unoff(); + break; + case 0x08: + Imp(); + PHP(); + break; + case 0x09: + Imm(); + ORA(); + break; + case 0x0a: + Imp(); + ASL_A(); + break; + case 0x0b: + Imm(); + AND(); + break; + case 0x0c: + Unoff3(); + break; + case 0x0d: + Abs(); + ORA(); + break; + case 0x0e: + Abs(); + ASL(); + break; + case 0x0f: + Unoff(); + break; + case 0x10: + Rel(); + BPL(); + break; + case 0x11: + IndZeroY(); + ORA(); + break; + case 0x12: + Hang(); + break; + case 0x13: + Unoff(); + break; + case 0x14: + Unoff2(); + break; + case 0x15: + ZeroX(); + ORA(); + break; + case 0x16: + ZeroX(); + ASL(); + break; + case 0x17: + Unoff(); + break; + case 0x18: + Imp(); + CLC(); + break; + case 0x19: + AbsY(); + ORA(); + break; + case 0x1a: + Unoff1(); + break; + case 0x1b: + Unoff(); + break; + case 0x1c: + Unoff3(); + break; + case 0x1d: + AbsX(); + ORA(); + break; + case 0x1e: + WAbsX(); + ASL(); + break; + case 0x1f: + Unoff(); + break; + case 0x20: + JSR(); + break; + case 0x21: + IndZeroX(); + AND(); + break; + case 0x22: + Hang(); + break; + case 0x23: + Unoff(); + break; + case 0x24: + Zero(); + BIT(); + break; + case 0x25: + Zero(); + AND(); + break; + case 0x26: + Zero(); + ROL(); + break; + case 0x27: + Unoff(); + break; + case 0x28: + Imp(); + PLP(); + break; + case 0x29: + Imm(); + AND(); + break; + case 0x2a: + Imp(); + ROL_A(); + break; + case 0x2b: + Imm(); + AND(); + break; + case 0x2c: + Abs(); + BIT(); + break; + case 0x2d: + Abs(); + AND(); + break; + case 0x2e: + Abs(); + ROL(); + break; + case 0x2f: + Unoff(); + break; + case 0x30: + Rel(); + BMI(); + break; + case 0x31: + IndZeroY(); + AND(); + break; + case 0x32: + Hang(); + break; + case 0x33: + Unoff(); + break; + case 0x34: + Unoff2(); + break; + case 0x35: + ZeroX(); + AND(); + break; + case 0x36: + ZeroX(); + ROL(); + break; + case 0x37: + Unoff(); + break; + case 0x38: + Imp(); + SEC(); + break; + case 0x39: + AbsY(); + AND(); + break; + case 0x3a: + Unoff1(); + break; + case 0x3b: + Unoff(); + break; + case 0x3c: + Unoff3(); + break; + case 0x3d: + AbsX(); + AND(); + break; + case 0x3e: + WAbsX(); + ROL(); + break; + case 0x3f: + Unoff(); + break; + case 0x40: + Imp(); + RTI(); + break; + case 0x41: + IndZeroX(); + EOR(); + break; + case 0x42: + Hang(); + break; + case 0x43: + Unoff(); + break; + case 0x44: + Unoff2(); + break; + case 0x45: + Zero(); + EOR(); + break; + case 0x46: + Zero(); + LSR(); + break; + case 0x47: + Unoff(); + break; + case 0x48: + Imp(); + PHA(); + break; + case 0x49: + Imm(); + EOR(); + break; + case 0x4a: + Imp(); + LSR_A(); + break; + case 0x4b: + Unoff(); + break; + case 0x4c: + Abs(); + JMP(); + break; + case 0x4d: + Abs(); + EOR(); + break; + case 0x4e: + Abs(); + LSR(); + break; + case 0x4f: + Unoff(); + break; + case 0x50: + Rel(); + BVC(); + break; + case 0x51: + IndZeroY(); + EOR(); + break; + case 0x52: + Hang(); + break; + case 0x53: + Unoff(); + break; + case 0x54: + Unoff2(); + break; + case 0x55: + ZeroX(); + EOR(); + break; + case 0x56: + ZeroX(); + LSR(); + break; + case 0x57: + Unoff(); + break; + case 0x58: + Imp(); + CLI(); + break; + case 0x59: + AbsY(); + EOR(); + break; + case 0x5a: + Unoff1(); + break; + case 0x5b: + Unoff(); + break; + case 0x5c: + Unoff3(); + break; + case 0x5d: + AbsX(); + EOR(); + break; + case 0x5e: + WAbsX(); + LSR(); + break; + case 0x5f: + Unoff(); + break; + case 0x60: + Imp(); + RTS(); + break; + case 0x61: + IndZeroX(); + ADC(); + break; + case 0x62: + Hang(); + break; + case 0x63: + Unoff(); + break; + case 0x64: + Unoff2(); + break; + case 0x65: + Zero(); + ADC(); + break; + case 0x66: + Zero(); + ROR(); + break; + case 0x67: + Unoff(); + break; + case 0x68: + Imp(); + PLA(); + break; + case 0x69: + Imm(); + ADC(); + break; + case 0x6a: + Imp(); + ROR_A(); + break; + case 0x6b: + Unoff(); + break; + case 0x6c: + Ind(); + JMP(); + break; + case 0x6d: + Abs(); + ADC(); + break; + case 0x6e: + Abs(); + ROR(); + break; + case 0x6f: + Unoff(); + break; + case 0x70: + Rel(); + BVS(); + break; + case 0x71: + IndZeroY(); + ADC(); + break; + case 0x72: + Hang(); + break; + case 0x73: + Unoff(); + break; + case 0x74: + Unoff2(); + break; + case 0x75: + ZeroX(); + ADC(); + break; + case 0x76: + ZeroX(); + ROR(); + break; + case 0x77: + Unoff(); + break; + case 0x78: + Imp(); + SEI(); + break; + case 0x79: + AbsY(); + ADC(); + break; + case 0x7a: + Unoff1(); + break; + case 0x7b: + Unoff(); + break; + case 0x7c: + Unoff3(); + break; + case 0x7d: + AbsX(); + ADC(); + break; + case 0x7e: + WAbsX(); + ROR(); + break; + case 0x7f: + Unoff(); + break; + case 0x80: + Unoff2(); + break; + case 0x81: + IndZeroX(); + STA(); + break; + case 0x82: + Unoff2(); + break; + case 0x83: + Unoff(); + break; + case 0x84: + Zero(); + STY(); + break; + case 0x85: + Zero(); + STA(); + break; + case 0x86: + Zero(); + STX(); + break; + case 0x87: + Unoff(); + break; + case 0x88: + Imp(); + DEY(); + break; + case 0x89: + Unoff2(); + break; + case 0x8a: + Imp(); + TXA(); + break; + case 0x8b: + Unoff(); + break; + case 0x8c: + Abs(); + STY(); + break; + case 0x8d: + Abs(); + STA(); + break; + case 0x8e: + Abs(); + STX(); + break; + case 0x8f: + Unoff(); + break; + case 0x90: + Rel(); + BCC(); + break; + case 0x91: + WIndZeroY(); + STA(); + break; + case 0x92: + Hang(); + break; + case 0x93: + Unoff(); + break; + case 0x94: + ZeroX(); + STY(); + break; + case 0x95: + ZeroX(); + STA(); + break; + case 0x96: + ZeroY(); + STX(); + break; + case 0x97: + Unoff(); + break; + case 0x98: + Imp(); + TYA(); + break; + case 0x99: + WAbsY(); + STA(); + break; + case 0x9a: + Imp(); + TXS(); + break; + case 0x9b: + Unoff(); + break; + case 0x9c: + Unoff(); + break; + case 0x9d: + WAbsX(); + STA(); + break; + case 0x9e: + Unoff(); + break; + case 0x9f: + Unoff(); + break; + case 0xa0: + Imm(); + LDY(); + break; + case 0xa1: + IndZeroX(); + LDA(); + break; + case 0xa2: + Imm(); + LDX(); + break; + case 0xa3: + Unoff(); + break; + case 0xa4: + Zero(); + LDY(); + break; + case 0xa5: + Zero(); + LDA(); + break; + case 0xa6: + Zero(); + LDX(); + break; + case 0xa7: + Unoff(); + break; + case 0xa8: + Imp(); + TAY(); + break; + case 0xa9: + Imm(); + LDA(); + break; + case 0xaa: + Imp(); + TAX(); + break; + case 0xab: + Unoff(); + break; + case 0xac: + Abs(); + LDY(); + break; + case 0xad: + Abs(); + LDA(); + break; + case 0xae: + Abs(); + LDX(); + break; + case 0xaf: + Unoff(); + break; + case 0xb0: + Rel(); + BCS(); + break; + case 0xb1: + IndZeroY(); + LDA(); + break; + case 0xb2: + Hang(); + break; + case 0xb3: + Unoff(); + break; + case 0xb4: + ZeroX(); + LDY(); + break; + case 0xb5: + ZeroX(); + LDA(); + break; + case 0xb6: + ZeroY(); + LDX(); + break; + case 0xb7: + Unoff(); + break; + case 0xb8: + Imp(); + CLV(); + break; + case 0xb9: + AbsY(); + LDA(); + break; + case 0xba: + Imp(); + TSX(); + break; + case 0xbb: + Unoff(); + break; + case 0xbc: + AbsX(); + LDY(); + break; + case 0xbd: + AbsX(); + LDA(); + break; + case 0xbe: + AbsY(); + LDX(); + break; + case 0xbf: + Unoff(); + break; + case 0xc0: + Imm(); + CPY(); + break; + case 0xc1: + IndZeroX(); + CMP(); + break; + case 0xc2: + Unoff2(); + break; + case 0xc3: + Unoff(); + break; + case 0xc4: + Zero(); + CPY(); + break; + case 0xc5: + Zero(); + CMP(); + break; + case 0xc6: + Zero(); + DEC(); + break; + case 0xc7: + Unoff(); + break; + case 0xc8: + Imp(); + INY(); + break; + case 0xc9: + Imm(); + CMP(); + break; + case 0xca: + Imp(); + DEX(); + break; + case 0xcb: + Unoff(); + break; + case 0xcc: + Abs(); + CPY(); + break; + case 0xcd: + Abs(); + CMP(); + break; + case 0xce: + Abs(); + DEC(); + break; + case 0xcf: + Unoff(); + break; + case 0xd0: + Rel(); + BNE(); + break; + case 0xd1: + IndZeroY(); + CMP(); + break; + case 0xd2: + Hang(); + break; + case 0xd3: + Unoff(); + break; + case 0xd4: + Unoff2(); + break; + case 0xd5: + ZeroX(); + CMP(); + break; + case 0xd6: + ZeroX(); + DEC(); + break; + case 0xd7: + Unoff(); + break; + case 0xd8: + Imp(); + CLD(); + break; + case 0xd9: + AbsY(); + CMP(); + break; + case 0xda: + Unoff1(); + break; + case 0xdb: + Unoff(); + break; + case 0xdc: + Unoff3(); + break; + case 0xdd: + AbsX(); + CMP(); + break; + case 0xde: + WAbsX(); + DEC(); + break; + case 0xdf: + Unoff(); + break; + case 0xe0: + Imm(); + CPX(); + break; + case 0xe1: + IndZeroX(); + SBC(); + break; + case 0xe2: + Unoff2(); + break; + case 0xe3: + Unoff(); + break; + case 0xe4: + Zero(); + CPX(); + break; + case 0xe5: + Zero(); + SBC(); + break; + case 0xe6: + Zero(); + INC(); + break; + case 0xe7: + Unoff(); + break; + case 0xe8: + Imp(); + INX(); + break; + case 0xe9: + Imm(); + SBC(); + break; + case 0xea: + Imp(); + NOP(); + break; + case 0xeb: + Imm(); + SBC(); + break; + case 0xec: + Abs(); + CPX(); + break; + case 0xed: + Abs(); + SBC(); + break; + case 0xee: + Abs(); + INC(); + break; + case 0xef: + Unoff(); + break; + case 0xf0: + Rel(); + BEQ(); + break; + case 0xf1: + IndZeroY(); + SBC(); + break; + case 0xf2: + Hang(); + break; + case 0xf3: + Unoff(); + break; + case 0xf4: + Unoff2(); + break; + case 0xf5: + ZeroX(); + SBC(); + break; + case 0xf6: + ZeroX(); + INC(); + break; + case 0xf7: + Unoff(); + break; + case 0xf8: + Imp(); + SED(); + break; + case 0xf9: + AbsY(); + SBC(); + break; + case 0xfa: + Unoff1(); + break; + case 0xfb: + Unoff(); + break; + case 0xfc: + Unoff3(); + break; + case 0xfd: + AbsX(); + SBC(); + break; + case 0xfe: + WAbsX(); + INC(); + break; + case 0xff: + Unoff(); + break; + } +} + +static int runM6502(void *data) +{ + while (1) + { + synchronize(); + + cycles = 0; + + while (cycles < sync_cycles) + { + if (!(statusRegister & I) && IRQ) + handleIRQ(); + if (NMI) + handleNMI(); + + executeOpcode(); + } + } + + return 0; +} + +void startM6502(void) +{ + struct timeval t; + + if (!thread) + { + gettimeofday(&t, NULL); + interval_start = (long long)(t.tv_usec / 1000 + + t.tv_sec * 1000); + pthread_create(&thread, NULL,(void *)&runM6502, NULL); + } +} + +void stopM6502(void) +{ + if (thread) + { + pthread_cancel(thread); + } +} + +void resetM6502(void) +{ + statusRegister |= I; + stackPointer = 0xFF; + programCounter = memReadAbsolute(0xFFFC); +} + +/* freq Processr clock speed in Hz + * interval Interval of sync between real and ideal time in msec + */ +void setSpeed(int freq, int interval) +{ + /* freq = cycles/1sec, cycles/1msec = freq/1000 */ + sync_cycles = freq / 1000 * interval; + sync_interval = interval; +} + +void setIRQ(int state) +{ + IRQ = state; +} + +void setNMI(void) +{ + NMI = 1; +} diff --git a/src/m6502.h b/src/m6502.h new file mode 100755 index 0000000..5f6c8a2 --- /dev/null +++ b/src/m6502.h @@ -0,0 +1,27 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +void startM6502(void); +void stopM6502(void); +void resetM6502(void); +void setSpeed(int freq, int synchroMillis); +void setIRQ(int state); +void setNMI(void); diff --git a/src/main.c b/src/main.c new file mode 100755 index 0000000..5693aea --- /dev/null +++ b/src/main.c @@ -0,0 +1,63 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#include +#include + +#include "m6502.h" +#include "memory.h" +#include "keyboard.h" +#include "screen.h" +#include "msgbuf.h" + +int main() +{ + /* initialize ncurse */ + initscr(); + noecho(); + cbreak(); + attron(A_REVERSE); + init_screen(); + init_msgbuf(); + + /* initialize apple1 screen */ + resetScreen(); + setSpeed(1000000, 50); /* 1M Hz. Sync emulation every 50 msec */ + + /* Load monitor rom */ + if (!loadMonitor()) { + print_msgbuf("Failed loading rom/monitor.rom"); + endwin(); + return 0; + } + resetMemory(); + + /* start processor */ + resetM6502(); + startM6502(); + atexit(stopM6502); + + while (handleInput()); + + /* ending */ + endwin(); + return 0; +} diff --git a/src/makefile b/src/makefile new file mode 100755 index 0000000..eeac56d --- /dev/null +++ b/src/makefile @@ -0,0 +1,36 @@ +# napple1 makefile +# Nobu Hatano +CC = gcc +CFLAGS = -Wall -ansi +THREAD = -lpthread + +# Support Linux and Cygwin +OS = ${shell uname -o} +ifeq ($(OS), Cygwin) + CURSES = -lncurses -I/usr/include/ncurses +else + CURSES = -lncurses +endif + +all: napple1 + +napple1: m6502.o memory.o pia6820.o screen.o keyboard.o main.o msgbuf.o + $(CC) $(CFLAGS) -o ../napple1 m6502.o memory.o pia6820.o screen.o msgbuf.o keyboard.o main.o $(THREAD) $(CURSES) +m6502.o: m6502.c m6502.h pia6820.h memory.h + $(CC) $(CFLAGS) -o m6502.o -c m6502.c $(THREAD) +memory.o: memory.c pia6820.h memory.h pia6820.h screen.h + $(CC) $(CFLAGS) -o memory.o -c memory.c +pia6820.o: pia6820.c pia6820.h screen.h + $(CC) $(CFLAGS) -o pia6820.o -c pia6820.c +screen.o: screen.c + $(CC) $(CFLAGS) -o screen.o -c screen.c $(CURSES) +msgbuf.o: msgbuf.c screen.h memory.h + $(CC) $(CFLAGS) -o msgbuf.o -c msgbuf.c $(CURSES) +keyboard.o: keyboard.c keyboard.h m6502.h pia6820.h memory.h screen.h + $(CC) $(CFLAGS) -o keyboard.o -c keyboard.c +main.o: main.c keyboard.h m6502.h screen.h msgbuf.h memory.h + $(CC) $(CFLAGS) -o main.o -c main.c $(CURSES) +clean: + -rm *.o + -rm ../napple1 + diff --git a/src/memory.c b/src/memory.c new file mode 100755 index 0000000..3484c24 --- /dev/null +++ b/src/memory.c @@ -0,0 +1,248 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +/* + * Memory maap of napple1 + * + * Apple I 8K mode & napple1 64K mode, common usage + * ----------------------------------------------------------------------- + * $0000 Ststem & User Space + * $0200 - $027F Input Buffer used by monitor + * $0FFF + * ----------------------------------------------------------------------- + * $D010 KBD Keyboard input register. b7 is always 1 by hardware. + * Read KBD will automatcically clear KBDCR's b7. + * $D011 KBDCR When key is pressed, b7 is set by hardware. + * $D012 DSP Bit b6..b0 is output character for the terminal. + * Writing to DSP will set b7 by hardware. + * The termianl clear b7 after the character is accepted. + * $D013 DSPCR Unused. + * ----------------------------------------------------------------------- + * $E000 Apple I Integer BASIC + * $E2B3 Re-entry address + * $EFFF + * ----------------------------------------------------------------------- + * $FF00 Monitor + * $FFEF Echo + * $FFFF + * ----------------------------------------------------------------------- + */ +/* Apple I 8K mode memory map + * --------------------------------- + * Start Type + * addr + * --------------------------------- + * $0000 4KB RAM + * $1000 unused + * $D010 Display and Keyboard I/O + * $D014 unused + * $E000 4KB RAM + * $F000 unused + * $FF00 256B ROM^ (Woz Monitor) + * --------------------------------- + * ^ ROM can be written by Load core + */ +/* napple I 32K mode memory map + * --------------------------------- + * Start Type + * addr + * --------------------------------- + * $0000 32K RAM + * $8000 unused + * $D010 Display and Keyboard I/O + * $D014 unused + * $E000 8K ROM^ + * --------------------------------- + * ^ ROM can be written by Load core + */ + +#include +#include +#include + +#include "pia6820.h" +#include "memory.h" +#include "screen.h" +#include "msgbuf.h" + +#define MEMMAX 0xFFFF + +static unsigned char mem[65536]; +static int mode = 8; /* 8 = Apple I 8K mode, 32 = napple1 32K mode */ + +void flipMode(void) +{ + if (mode == 8) + mode = 32; + else + mode = 8; + + /* update message buffer */ + print_msgbuf(""); +} + +int memMode(void) +{ + return mode; +} + +void loadBasic(void) +{ + FILE *fd = fopen("rom/basic.rom", "rb"); + char input[MSG_LEN_MAX +1]; + + if (!fd) { + gets_msgbuf("Failed to open rom/basic.rom: ", input); + return; + } + + gets_msgbuf("Load basic.rom to ram? y/n: ", input); + if (input[0] == 'y') { + size_t s = fread(&mem[0xE000], 1, 4096, fd); + if (s) { + gets_msgbuf("Load completed: ", input); + } else { + gets_msgbuf("Load failed: ", input); + } + } + + fclose(fd); + return; +} + +int loadMonitor(void) +{ + FILE *fd = fopen("rom/monitor.rom", "rb"); + + if (fd) { + fread(&mem[0xFF00], 1, 256, fd); + fclose(fd); + } + else{ + return 0; + } + + return 1; +} + +void resetMemory(void) +{ + if (memMode() > 8) + memset(mem, 0, 0xE000); /* rom is starting from 0xE000 */ + else + memset(mem, 0, 0x10000 - 256); /* rom is within tail 256b */ +} + +unsigned char memRead(unsigned short address) +{ + if (address == 0xD013) + return readDspCr(); + if (address == 0xD012) + return readDsp(); + if (address == 0xD011) + return readKbdCr(); + if (address == 0xD010) + return readKbd(); + + return mem[address]; +} + +void memWrite(unsigned short address, unsigned char value) +{ + if (address < 0x1000) + mem[address] = value; + else if (address < 0x8000 && (memMode() > 8) ) + mem[address] = value; + else if (address == 0xD013) + writeDspCr(value); + else if (address == 0xD012) + writeDsp(value); + else if (address == 0xD011) + writeKbdCr(value); + else if (address == 0xD010) + writeKbd(value); + else if (address >= 0xE000 && address < 0xF000 && memMode() == 8) + mem[address] = value; + else + ; + + return; +} + +void dumpCore(void) +{ + int i; + FILE *fd; + char input[MSG_LEN_MAX +1]; + char corename[5 + MSG_LEN_MAX +1]; /* 'core/' + input string */ + + gets_msgbuf("Dump core. Filename: ", input); + sprintf(corename, "core/%s", input); + + fd = fopen(corename, "w"); + for (i = 0; i <= MEMMAX; i++) + fputc(mem[i], fd); + fclose(fd); + gets_msgbuf("Dump core completed: ", input); +} + +int loadCore(void) +{ + FILE *fd; + char input[MSG_LEN_MAX +1]; + char corename[5 + MSG_LEN_MAX +1]; /* 'core/' + input string */ + size_t s = 0; + unsigned char buf[65536]; + int i; + + gets_msgbuf("Load core. Filename: ", input); + sprintf(corename, "core/%s", input); + + fd = fopen(corename, "r"); + if (fd) { + s = fread(&buf[0], 1, MEMMAX+1, fd); + fclose(fd); + } + if (s) { + gets_msgbuf("Load core completed: ", input); + } else { + gets_msgbuf("Failed to open core file: ", input); + return 0; + } + + /* 0xF000 is unused area of 8K mode or + * ROM area of 32K mode. So, if 0xF000 has a value, + * The mode should better change to 32K mode. + */ + if ((buf[0xF000] != 0) && (memMode() == 8)) { + flipMode(); + } + + if (memMode() == 8) { + for (i = 0; i <= 0x0FFF; i++) mem[i] = buf[i]; + for (i = 0xE000; i <= 0xEFFF; i++) mem[i] = buf[i]; + for (i = 0xFF00; i <= 0xFFFF; i++) mem[i] = buf[i]; + } else { + for (i = 0; i <= 0x7FFF; i++) mem[i] = buf[i]; + for (i = 0xE000; i <= 0xFFFF; i++) mem[i] = buf[i]; + } + return 1; +} diff --git a/src/memory.h b/src/memory.h new file mode 100755 index 0000000..22015ec --- /dev/null +++ b/src/memory.h @@ -0,0 +1,27 @@ +/* Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +void loadBasic(void); +int loadMonitor(void); +void resetMemory(void); +unsigned char memRead(unsigned short address); +void memWrite(unsigned short address, unsigned char value); +void dumpCore(void); +int loadCore(void); +int memMode(void); +void flipMode(void); diff --git a/src/msgbuf.c b/src/msgbuf.c new file mode 100755 index 0000000..dc39dfa --- /dev/null +++ b/src/msgbuf.c @@ -0,0 +1,73 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + */ +/* + * Message buffer is a 1 line display of napple 1 system. + */ +#include +#include + +#include "screen.h" +#include "msgbuf.h" +#include "memory.h" + +static WINDOW *msgbuf; + +void print_msgbuf(char *s) +{ + char msg[MSG_LEN_MAX + 1]; + + if ((int)strlen(s) < 1) + sprintf(msg, + "Basic Dump Load Reset Hard Quit Mode %2dK", + memMode()); + else + sprintf(msg, + "%-40s", + s); + werase(msgbuf); + wprintw(msgbuf, msg); + wrefresh(msgbuf); +} + +void init_msgbuf(void) +{ + msgbuf = newwin(1, ncol, nrow, 0); + wattron(msgbuf, COLOR_PAIR(1) | A_REVERSE); /* 2 is black on green */ + + print_msgbuf(""); +} + +void gets_msgbuf(char *prompt, char *typed) +{ + werase(msgbuf); + echo(); + nocbreak(); + wprintw(msgbuf, "%s", prompt); + wrefresh(msgbuf); + wgetnstr(msgbuf, typed, MSG_LEN_MAX); + noecho(); + cbreak(); + print_msgbuf(""); + select_screen(); +} + diff --git a/src/msgbuf.h b/src/msgbuf.h new file mode 100755 index 0000000..58a502a --- /dev/null +++ b/src/msgbuf.h @@ -0,0 +1,27 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + */ +void init_msgbuf(void); +void print_msgbuf(char *string); +void gets_msgbuf(char *prompt, char *typed); + +#define MSG_LEN_MAX 40 diff --git a/src/pia6820.c b/src/pia6820.c new file mode 100755 index 0000000..100fa2c --- /dev/null +++ b/src/pia6820.c @@ -0,0 +1,104 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#include "pia6820.h" +#include "screen.h" + +static unsigned char _dspCr = 0, _dsp = 0, _kbdCr = 0, _kbd = 0; +static int kbdInterrups = 0, dspOutput = 0; + +void resetPia6820(void) +{ + kbdInterrups = dspOutput = 0; + _kbdCr = _dspCr = 0; +} + +void setKdbInterrups(int b) +{ + kbdInterrups = b; +} + +int getKbdInterrups(void) +{ + return kbdInterrups; +} + +int getDspOutput(void) +{ + return dspOutput; +} + +void writeDspCr(unsigned char dspCr) +{ + if (!dspOutput && dspCr >= 0x80) + dspOutput = 1; + else + _dspCr = dspCr; +} + +void writeDsp(unsigned char dsp) +{ + if (dsp >= 0x80) + dsp -= 0x80; + + outputDsp(dsp); + _dsp = dsp; +} + +void writeKbdCr(unsigned char kbdCr) +{ + if (!kbdInterrups && kbdCr >= 0x80) + kbdInterrups = 1; + else + _kbdCr = kbdCr; +} + +void writeKbd(unsigned char kbd) +{ + _kbd = kbd; +} + +unsigned char readDspCr(void) +{ + return _dspCr; +} + +unsigned char readDsp(void) +{ + return _dsp; +} + +unsigned char readKbdCr(void) +{ + if (kbdInterrups && _kbdCr >= 0x80) + { + _kbdCr = 0; + + return 0xA7; + } + + return _kbdCr; +} + +unsigned char readKbd(void) +{ + return _kbd; +} diff --git a/src/pia6820.h b/src/pia6820.h new file mode 100755 index 0000000..6d1a9d8 --- /dev/null +++ b/src/pia6820.h @@ -0,0 +1,33 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +void resetPia6820(void); +void setKdbInterrups(int b); +int getKbdInterrups(void); +int getDspOutput(void); +void writeDspCr(unsigned char dspCr); +void writeDsp(unsigned char dsp); +void writeKbdCr(unsigned char kbdCr); +void writeKbd(unsigned char kbd); +unsigned char readDspCr(void); +unsigned char readDsp(void); +unsigned char readKbdCr(void); +unsigned char readKbd(void); diff --git a/src/screen.c b/src/screen.c new file mode 100755 index 0000000..629acbc --- /dev/null +++ b/src/screen.c @@ -0,0 +1,183 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + * USA. + */ +/** screen.c + * Screen is a vitrual display of Apple I + */ +#define _XOPEN_SOURCE 500 +#include +#include +#include +#include + +#include "screen.h" + +static unsigned char screenTbl[40 * 24]; +static int indexX, indexY; +static WINDOW *screen; +static long long interval_start; /* interval start time in u sec */ + +char getch_screen(void) +{ + return (char)wgetch(screen); +} + +void init_screen(void) +{ + /* Determine main screen window size. + * To reserve bottom 1 line for the message buffer, + * -1 from $LINES + */ + if ((nrow = (LINES - 1)) > 24 || nrow < 1) + nrow = 24; + if ((ncol = COLS) > 40 || ncol < 1) + ncol = 40; + + /* Create 'screen' window */ + screen = newwin(nrow, ncol, 0, 0); + + /* Set screen window color as Green On Black */ + if (has_colors()) + { + start_color(); + init_pair(1, COLOR_GREEN, COLOR_BLACK); + wattron(screen, COLOR_PAIR(1)); + } +} + +void updateScreen(void) +{ + int i, j; + unsigned char c; + + werase(screen); + + for (j = 0; j < nrow; ++j) + { + for (i = 0; i < ncol; ++i) + { + wmove(screen, j, i); + c = screenTbl[j * ncol + i]; + if (c < '!') + c = ' '; + wprintw(screen, "%c", c); + } + } + + wmove(screen, indexY, indexX); /* put cursor */ + wrefresh(screen); +} + +void resetScreen(void) +{ + indexX = indexY = 0; + memset(screenTbl, 0, nrow * ncol); + updateScreen(); +} + +static void synchronizeOutput(void) +{ + int processed; /* processed real time in u sec */ + int delay; /* delay u sec to be added to real time */ + struct timeval t; + + gettimeofday(&t, NULL); + processed = (int)(t.tv_usec + t.tv_sec * 1000000 + - interval_start); + if (processed < 0) + processed = 0; + + /* Video output refreshes screen by 60 Hz. + * In real time, it takes 1 sec / 60 hz. + * So, 1000000 usec / 60 hz. + */ + delay = 1000000 / 60 - processed; + if (delay < 0) + delay = 0; + usleep((unsigned int)delay); + + gettimeofday(&t, NULL); + interval_start = (long long)(t.tv_usec + t.tv_sec * 1000000); +} + +static void newLine(void) +{ + int i; + + for (i = 0; i < (nrow-1) ; ++i) + memcpy(&screenTbl[i * ncol], + &screenTbl[(i + 1) * ncol], + ncol); + + memset(&screenTbl[ncol * (nrow-1)], 0, ncol); +} + +void outputDsp(unsigned char dsp) +{ + switch (dsp) + { + case 0x5F: + if (indexX == 0) + { + indexY--; + indexX = ncol-1; + } + else + indexX--; + + screenTbl[indexY * ncol + indexX] = 0; + break; + case 0x0A: + case 0x0D: + indexX = 0; + indexY++; + break; + case 0x00: + case 0x7F: + break; + default: + screenTbl[indexY * ncol + indexX] = dsp; + indexX++; + break; + } + + if (indexX == ncol) + { + indexX = 0; + indexY++; + } + if (indexY == nrow) + { + newLine(); + indexY--; + } + + updateScreen(); + + synchronizeOutput(); +} + +void select_screen(void) +{ + touchwin(screen); + wrefresh(screen); +} diff --git a/src/screen.h b/src/screen.h new file mode 100755 index 0000000..88bdbb3 --- /dev/null +++ b/src/screen.h @@ -0,0 +1,29 @@ +/* napple1 ncurses Apple 1 emulator + * Copyright (C) 2008 Nobu Hatano + * + * Pom1 Apple 1 Emulator + * Copyright (C) 2000 Verhille Arnaud + * Copyright (C) 2006 John D. Corrado + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +void init_screen(void); +void resetScreen(void); +void outputDsp(unsigned char dsp); +char getch_screen(void); +void select_screen(void); + +int nrow, ncol; +