Skip to content

Commit

Permalink
Update RAM on file load and setting up for v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MaisiKoleni committed Jan 10, 2019
1 parent 5e8207c commit c43d097
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.maisikoleni.am2900me</groupId>
<artifactId>Am2900ME</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<name>Am2900ME</name>
<description>Emulator for Am2900 Family Microprogramming</description>
<url>https://github.com/MaisiKoleni/Am2900ME</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/maisikoleni/am2900me/ui/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
public class Main extends Application {

public static final String DESCRIPTOR = "Am2900ME (v0.0.2)";
public static final String DESCRIPTOR = "Am2900ME (v0.0.3)";

private final Am2900Machine machine;
private final List<String> stylesheets = List.of(
Expand Down
1 change: 1 addition & 0 deletions src/main/java/net/maisikoleni/am2900me/ui/RAMPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ private final void readCSV(Iterable<String> lines) {
ram.set(offset + i, Integer.decode(parts[i + 1]));
}
}
updatePage(false);
}

private int getValue(int inPageAddress) {
Expand Down

0 comments on commit c43d097

Please sign in to comment.