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;