From 174d5df1901fbd1cf144cfa6e4f56fac1b6b2429 Mon Sep 17 00:00:00 2001 From: joxe Date: Thu, 4 Sep 2008 21:25:34 +0000 Subject: [PATCH] updated version number and added info in CHANGELOG to prepare for release of 0.92 git-svn-id: https://mspsim.svn.sourceforge.net/svnroot/mspsim/mspsim@300 23d1a52b-0c3c-0410-b72d-8f29ab48fe35 --- CHANGE_LOG.txt | 6 ++++++ se/sics/mspsim/core/MSP430Constants.java | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGE_LOG.txt b/CHANGE_LOG.txt index b4b0675..c907e60 100644 --- a/CHANGE_LOG.txt +++ b/CHANGE_LOG.txt @@ -2,6 +2,12 @@ Changes: - fixed bug with a write register which did not handle word/byte - fixed bug which caused array out of bounds on IO-units. +- fixed bug in timer causing interrupts when timer was stopped +- fixed bug in timer to handle start/stop better +- fixed bug in MSP430 core that caused MOV operand to change status flags +- added getDoubleValue in DataSource and made "duty" command print + duty cycle information as double instead of int +- fixed windows to accept double input and not only int input 0.91 Changes: diff --git a/se/sics/mspsim/core/MSP430Constants.java b/se/sics/mspsim/core/MSP430Constants.java index 0e3a830..96f9a66 100644 --- a/se/sics/mspsim/core/MSP430Constants.java +++ b/se/sics/mspsim/core/MSP430Constants.java @@ -43,7 +43,7 @@ package se.sics.mspsim.core; public interface MSP430Constants { - public static final String VERSION = "0.91"; + public static final String VERSION = "0.92"; public static final int RESET_PUC = 0; public static final int RESET_POR = 1;