1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-07 19:29:27 +00:00

Bumping the version.

- Bumped version to 1.0.3.
- A few minor README changes.
This commit is contained in:
Seth Morabito 2012-10-14 00:35:48 -07:00
parent c214cc9b43
commit 6c0ff5a5b2
2 changed files with 14 additions and 8 deletions

View File

@ -5,8 +5,8 @@ SYMON - A 6502 System Simulator
NOT YET FULLY FUNCTIONAL. IT MAY BE USEFUL, BUT IT IS NOT YET INTENDED
TO BE USED BY ANYONE BUT DEVELOPERS. Feedback is welcome!**
**Version:** 0.2
**Last Updated:** 22 April, 2012
**Version:** 0.3
**Last Updated:** 14 October, 2012
Copyright (c) 2008-2012 Seth J. Morabito <web@loomcom.com>
@ -48,9 +48,9 @@ Maven will build Symon, run unit tests, and produce a jar file in the
Symon is meant to be invoked directly from the jar file. To run with
Java 1.5 or greater, just type:
$ java -jar symon-0.1-jar-with-dependencies.jar
$ java -jar symon-0.3-jar-with-dependencies.jar
When Symon is running, you should be greeted by a simple graphical
When Symon is running, you should be presented with a simple graphical
interface.
@ -63,8 +63,12 @@ Right now, all programs are loaded starting at addres $0300. After
loading, the simulated CPU's reset vector is loaded with the values
$00, $03, and the CPU is reset.
There is a simple sample program in the "samples" directory,
There are two very simple sample program in the "samples" directory,
for testing.
- 'echo.prg' will echo back anything typed at the console.
- 'hello.prg' will continuously print "Hello, 6502 World!" to the console.
### 3.3 Running
@ -74,6 +78,9 @@ running at address $0300.
## 4.0 To Do
- Accurate timing (all simulated instructions currently take
only one step to execute)
- Interrupt handling!
- UI needs a ton more polish.
@ -96,8 +103,7 @@ running at address $0300.
debugging.
5.0 Licensing
-------------
## 5.0 Licensing
Symon is free software. It is distributed under the MIT License.
Please see the file 'COPYING' for full details of the license.

View File

@ -4,7 +4,7 @@
<groupId>com.loomcom.symon</groupId>
<artifactId>symon</artifactId>
<packaging>jar</packaging>
<version>0.2</version>
<version>0.3</version>
<name>symon</name>
<url>http://www.loomcom.com/symon</url>
<properties>