Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .classpath

This file was deleted.

8 changes: 2 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/innot/*</url>
</repository>
</repositories>

<build>
Expand Down Expand Up @@ -114,9 +110,9 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.innot.sim6502</groupId>
<groupId>com.github.innot</groupId>
<artifactId>Sim6502Java</artifactId>
<version>0.9.3</version>
<version>0.9.2</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/neemann/digital/plugin/MOS6502.java
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ public void writeOutputs() throws NodeException {
syncOut.setBool(sim_output.sync);
rwOut.setBool(sim_output.rw);

// Set the data bus to output when R/W is low. Otherwise, set to high-Z.
if (!sim_output.rw) {
// Set the data bus to output when R/W is low and PHI2 is high. Otherwise, set to high-Z.
if (!sim_output.rw && last_clock) {
dataOut.setValue(sim_output.data);
} else {
dataOut.setToHighZ();
Expand Down