Skip to content

Commit

Permalink
Fixed interpreter debugnop locations address
Browse files Browse the repository at this point in the history
  • Loading branch information
maccasoft committed Dec 14, 2024
1 parent 86fe709 commit 14bf211
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.maccasoft</groupId>
<artifactId>spin-tools-runtime</artifactId>
<version>0.42.0</version>
<version>0.42.1</version>
<packaging>pom</packaging>
<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion modules/spin-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.maccasoft</groupId>
<artifactId>spin-tools</artifactId>
<version>0.42.0</version>
<version>0.42.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
public class SpinTools {

public static final String APP_TITLE = "Spin Tools IDE";
public static final String APP_VERSION = "0.42.0";
public static final String APP_VERSION = "0.42.1";

static final File defaultSpin1Examples = new File(System.getProperty("APP_DIR"), "examples/P1").getAbsoluteFile();
static final File defaultSpin2Examples = new File(System.getProperty("APP_DIR"), "examples/P2").getAbsoluteFile();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Spin2Debugger {
static final int _clkmode2 = 0x00DC;
static final int _delay = 0x00E0;
static final int _appsize = 0x00E4;
static final int _hubset = 0x00E0;
static final int _hubset = 0x00E8;

static final int _brk_cond = 0x011C;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public class Spin2Interpreter {
static final int _clkmode_hub = 0x0040;
static final int _clkfreq_hub = 0x0044;

static final int _debugnop1 = 0x0101C;
static final int _debugnop2 = 0x01020;
static final int _debugnop3 = 0x01024;
static final int _debugnop1 = 0x00F20;
static final int _debugnop2 = 0x00F24;
static final int _debugnop3 = 0x00F28;

int[] debugnop = new int[3];

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.maccasoft</groupId>
<artifactId>spin-tools-ide</artifactId>
<version>0.42.0</version>
<version>0.42.1</version>
<packaging>pom</packaging>
<description>Integrated Development Environment for Parallax Propeller microcontrollers.</description>
<developers>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>com.maccasoft</groupId>
<artifactId>spin-tools</artifactId>
<version>0.42.0</version>
<version>0.42.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 14bf211

Please sign in to comment.